Search found 14 matches
- Tue Apr 04, 2006 2:44 pm
- Forum: Volume 110 (11000-11099)
- Topic: 11025 - Mr. And Mrs. Hamilton
- Replies: 21
- Views: 9863
11025 - Mr. And Mrs. Hamilton
From the sample input/output, I inferred that the author assumed the probability of Mr. Smith's waiting at certain intersection was totally (thus only) decided by the degree of the intersection, given that Mr. Smith had walked long enough before he stopped. However, I've got a different opinion that ...
- Sat Oct 11, 2003 4:43 pm
- Forum: Volume 105 (10500-10599)
- Topic: 10562 - Undraw the Trees
- Replies: 18
- Views: 10514
- Sat Oct 11, 2003 3:45 am
- Forum: Volume 105 (10500-10599)
- Topic: 10566 - Crossed Ladders
- Replies: 39
- Views: 16252
- Thu Oct 09, 2003 5:37 pm
- Forum: Volume 105 (10500-10599)
- Topic: 10566 - Crossed Ladders
- Replies: 39
- Views: 16252
- Thu Oct 09, 2003 4:49 pm
- Forum: Volume 105 (10500-10599)
- Topic: 10562 - Undraw the Trees
- Replies: 18
- Views: 10514
- Thu Oct 09, 2003 12:38 pm
- Forum: Other words
- Topic: Overloaded judge during contests
- Replies: 21
- Views: 6342
- Thu Oct 09, 2003 6:28 am
- Forum: Other words
- Topic: Overloaded judge during contests
- Replies: 21
- Views: 6342
2hewei
Actually, I used dynamic programming. The running time is O(N^4) (however the inner loop contains a few operations, so the constant is small and there is no TL), and the used memory is O(N^3) (at first I had array int [210][210][210] and that caused ML - it was quite annoying). If you want ...
Actually, I used dynamic programming. The running time is O(N^4) (however the inner loop contains a few operations, so the constant is small and there is no TL), and the used memory is O(N^3) (at first I had array int [210][210][210] and that caused ML - it was quite annoying). If you want ...
- Thu Oct 09, 2003 6:12 am
- Forum: Volume 105 (10500-10599)
- Topic: 10562 - Undraw the Trees
- Replies: 18
- Views: 10514
- Wed Oct 08, 2003 5:06 pm
- Forum: Volume 105 (10500-10599)
- Topic: 10562 - Undraw the Trees
- Replies: 18
- Views: 10514
- Wed Oct 08, 2003 3:50 pm
- Forum: Other words
- Topic: Overloaded judge during contests
- Replies: 21
- Views: 6342
- Wed Oct 08, 2003 3:16 pm
- Forum: ACM ICPC Archive Board
- Topic: Test data for problem 2516 Sly Number may be incorrect!
- Replies: 7
- Views: 2416
- Wed Oct 08, 2003 8:16 am
- Forum: ACM ICPC Archive Board
- Topic: Test data for problem 2516 Sly Number may be incorrect!
- Replies: 7
- Views: 2416
- Thu Sep 25, 2003 2:12 pm
- Forum: Other words
- Topic: Is this a bug?
- Replies: 0
- Views: 706
Is this a bug?
The memory usage of the following code shown on the OnlineJudge's status page is 64 kB! I believe there was something wrong.
Code: Select all
int A[1024][1024];
int main()
{
int i, j;
for (i = 0; i < 1024; i++)
{
for (j = 0; j < 1024; j++)
{
A[i][j] = i + j;
}
}
return 0;
}
- Tue Jul 15, 2003 4:55 pm
- Forum: ACM ICPC Archive Board
- Topic: Test data for problem 2516 Sly Number may be incorrect!
- Replies: 7
- Views: 2416
Test data for problem 2516 Sly Number may be incorrect!
I found out that the test data for problem 2516 Sly Number might be the same as provided by the ACM/ICPC problem archive or something like that. But I think this set of test data for "Sly Number" is incorrect and the only two submitters who got AC on this problem probably printed out the "answer ...