Search found 21 matches

by likhan
Sat Jun 09, 2007 12:55 pm
Forum: Volume 4 (400-499)
Topic: 453 - Intersecting Circles
Replies: 84
Views: 25631

453 WA

Everybody is talking about getting PE, but man I cannot remove WA talk about PE later. Anyways looked for Adrian's inputs, but they are not any more available neither from Stefen site nor Adrians. Somebody please come to rescue, I'm going crazy already tried arnd 20 submissions with different combin...
by likhan
Thu Jun 07, 2007 8:14 am
Forum: Volume 3 (300-399)
Topic: 312 - Crosswords (II)
Replies: 20
Views: 11672

Ac Output 7 7 0 0 1 1 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 1 1 0 0 1 0 0 1 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 1 1 1 0 0 5 5 0 0 1 0 0 0 0 1 0 0 0 1 1 1 0 0 1 0 1 0 0 0 0 0 0 5 5 0 0 0 0 0 0 1 0 1 0 0 1 1 1 0 0 0 1 0 0 0 0 1 0 0 2 2 1 1 1 1 3 3 0 0 0 0 1 0 0 0 0 3 3 1 1 1 1 0 1 1 1 1 8 8 0 1 1 1 1 1 1 0 1 0 ...
by likhan
Mon Nov 25, 2002 5:57 pm
Forum: Volume 104 (10400-10499)
Topic: 10412 - Big Big Trees
Replies: 15
Views: 10533

I found out the problem it was with setting the limit for the line segment intersection check.
by likhan
Mon Nov 25, 2002 5:27 pm
Forum: Volume 104 (10400-10499)
Topic: 10412 - Big Big Trees
Replies: 15
Views: 10533

10412 - Big Big Trees

I'm using DP to calculate the cost. cost[0] = 0 cost = cost[i-1] + min(len[j]+len[k]) [j,k are tree's leaves length of i-1th and ith tree. and also no line segments between the j and k intersects and the straight line distance is less then the specified.] and then again minimized cost = min(cost , c...
by likhan
Fri Nov 15, 2002 8:16 pm
Forum: Volume 102 (10200-10299)
Topic: 10256 - The Great Divide
Replies: 21
Views: 9786

Thanx ntrhieu got ac.
by likhan
Fri Nov 15, 2002 1:51 am
Forum: Volume 102 (10200-10299)
Topic: 10256 - The Great Divide
Replies: 21
Views: 9786

Hello I have tried everything, I have atleast submitted this probnlem a hundred times but still can't figure out anything. what I did was 1)Created convex hulls of the supporters 2) if any point is less than 1 then yes 3) if both contains 1 point then yes 4) if ( one contains 1 point and the other 2...
by likhan
Tue Nov 12, 2002 11:31 am
Forum: Volume 7 (700-799)
Topic: 707 - Robbery
Replies: 12
Views: 7922

Thanx Adrien. If the first time step

######
#00#0#
######
######

2nd

######
#0000#
#0000#
######

here # stands for place which was monitored by inspector robstop and 0 where there was no monitoring.

what'll be the output.

thanx
by likhan
Tue Nov 12, 2002 1:10 am
Forum: Volume 7 (700-799)
Topic: 707 - Robbery
Replies: 12
Views: 7922

As I have asked before, anyone who did the problem can u explain it to me?

Thanx in advance
by likhan
Thu Nov 07, 2002 9:08 pm
Forum: Volume 103 (10300-10399)
Topic: 10369 - Arctic Network
Replies: 45
Views: 30037

Thanx Tomal for ur time. But how do i do it?
by likhan
Thu Nov 07, 2002 8:43 pm
Forum: Volume 103 (10300-10399)
Topic: 10396 - Vampire Numbers
Replies: 21
Views: 9533

As said Your output seems to be incorrect. My AC solution gives 106 lines of output for N=6 , and 2353 lines of output for N=8 . for N=6: 102510 104260 105210 105264 105750 .... .... 789250 794088 809964 815958 829696 939658 for N=8: 10025010 10042510 10052010 10052064 10081260 10102252 ... ... 9476...
by likhan
Thu Nov 07, 2002 8:42 pm
Forum: Volume 103 (10300-10399)
Topic: 10395 - Titans in Danger
Replies: 18
Views: 4842

I think you are getting it all wrong. Plz check I don't think there are two same characters in a string. Mine one got AC.
by likhan
Thu Nov 07, 2002 10:03 am
Forum: Volume 103 (10300-10399)
Topic: 10369 - Arctic Network
Replies: 45
Views: 30037

Hello 1 3 6 0 1 0 2 0 4 0 5 0 7 0 8 This input should give 2.0 as we have 3 satellites so if we number the vertices [0,1] = 1 [0,2] = 2 [0,4] = 3 [0,5] = 4 [0,7] = 5 [0,8] = 6 Kruskal will make a tree [1->2](1.0),[3->4](1.0),[5->6](1.0),[2->3](2.0),[4->5](2.0) If we use three satellites only one of ...
by likhan
Wed Nov 06, 2002 10:03 pm
Forum: Volume 103 (10300-10399)
Topic: 10369 - Arctic Network
Replies: 45
Views: 30037

Hello, I think I have gone mad that I can't solve this problem. :oops: I even tried with kruskal. The code goes like this. [cpp] #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAXE 510 #define MAXV 125000 #define sqr(a) ((a)*(a)) struct Point { long x, y; } p[MA...
by likhan
Wed Nov 06, 2002 6:30 pm
Forum: Volume 103 (10300-10399)
Topic: 10369 - Arctic Network
Replies: 45
Views: 30037

Hello, Thanx gvcormac for your patience to see the code. In the above code I found some mistakes and corrected it. The bottom portion I think should be like this. [cpp] i = 1; while ( S && i < N ) { if ( !selected[t .u] && S > 0 ) { selected[t .u] = 1; S--; } else break; if ( !select...
by likhan
Wed Nov 06, 2002 2:57 pm
Forum: Volume 103 (10300-10399)
Topic: 10369 - Arctic Network
Replies: 45
Views: 30037

I did this. Could any one plz see and tell what i'm doing wrong. The explanation is posted on my previous post. See top. Thanx [cpp] #include<string.h> #include<stdio.h> #include<stdlib.h> #include<math.h> #define MAXV 510 #define MAXVAL 200000000L long S, N; struct City { float x, y; }b[MAXV]; stru...

Go to advanced search