Same here for 10015.
It is said that time limit is 4 minutes but only 1 second is allowed.
I got a TLE then...
Search found 35 matches
- Thu Sep 06, 2007 8:42 pm
- Forum: Bugs and suggestions
- Topic: New Time Limit is 1 second?
- Replies: 8
- Views: 4457
- Mon Aug 27, 2007 7:06 am
- Forum: Volume 110 (11000-11099)
- Topic: 11090 - Going in Cycle!!
- Replies: 23
- Views: 16188
- Fri Aug 24, 2007 6:39 am
- Forum: Volume 110 (11000-11099)
- Topic: 11097 - Poor My Problem! :-(
- Replies: 8
- Views: 6461
- Tue Aug 21, 2007 8:53 am
- Forum: Volume 110 (11000-11099)
- Topic: 11090 - Going in Cycle!!
- Replies: 23
- Views: 16188
- Sat Aug 18, 2007 1:41 pm
- Forum: Volume 110 (11000-11099)
- Topic: 11090 - Going in Cycle!!
- Replies: 23
- Views: 16188
- Sun Jul 15, 2007 6:30 am
- Forum: Volume 112 (11200-11299)
- Topic: 11240 - Antimonotonicity
- Replies: 33
- Views: 16951
- Sat May 05, 2007 11:34 am
- Forum: Volume 1 (100-199)
- Topic: 183 - Bit Maps
- Replies: 15
- Views: 6058
- Mon Apr 16, 2007 10:01 am
- Forum: Volume 1 (100-199)
- Topic: 176 - City Navigation
- Replies: 20
- Views: 10301
- Mon Apr 09, 2007 7:07 pm
- Forum: Algorithms
- Topic: N-Queens and track back
- Replies: 2
- Views: 2481
- Tue Sep 12, 2006 3:47 pm
- Forum: Volume 6 (600-699)
- Topic: 612 - DNA Sorting
- Replies: 122
- Views: 33603
- Mon May 29, 2006 5:48 pm
- Forum: Volume 105 (10500-10599)
- Topic: 10513 - Bangladesh Sequences
- Replies: 15
- Views: 10111
10513 WA and any efficient approach?
Hi, I know one way tackling this task is to calculate the non bangladesh sequences, which do not fufil all the 4 requirements. But I 've got WA all the time while I passed all the test data provided in this board... it's driving me insane :o
Here comes my code:
const
lim : array[1..15] of char ...
Here comes my code:
const
lim : array[1..15] of char ...
- Wed May 24, 2006 6:24 pm
- Forum: Volume 110 (11000-11099)
- Topic: 11022 - String Factoring
- Replies: 12
- Views: 8488
- Wed May 24, 2006 10:53 am
- Forum: Volume 110 (11000-11099)
- Topic: 11022 - String Factoring
- Replies: 12
- Views: 8488
- Tue May 02, 2006 2:04 pm
- Forum: Algorithms
- Topic: Scheduling Problem?
- Replies: 2
- Views: 1668
- Mon May 01, 2006 2:42 pm
- Forum: Algorithms
- Topic: Scheduling Problem?
- Replies: 2
- Views: 1668
Scheduling Problem?
Suppose we have N sets of integers.
Each set of integers is represented by [A, B], a closed interval of integers such that A <= B.
Find the minimum number of sets such that those sets can cover [L, H], where 0<=L<=H<=2000, note that the selected sets can be overlapped.
Is it a DP problem? I can't ...
Each set of integers is represented by [A, B], a closed interval of integers such that A <= B.
Find the minimum number of sets such that those sets can cover [L, H], where 0<=L<=H<=2000, note that the selected sets can be overlapped.
Is it a DP problem? I can't ...