Task: | Delete Files |
Sender: | Hansuzu |
Submission time: | 2016-07-29 14:35:11 +0300 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.05 s | details |
#2 | WRONG ANSWER | 0.05 s | details |
#3 | WRONG ANSWER | 0.05 s | details |
#4 | WRONG ANSWER | 0.06 s | details |
#5 | WRONG ANSWER | 0.06 s | details |
#6 | WRONG ANSWER | 0.05 s | details |
#7 | ACCEPTED | 0.05 s | details |
#8 | WRONG ANSWER | 0.06 s | details |
#9 | WRONG ANSWER | 0.06 s | details |
#10 | WRONG ANSWER | 0.05 s | details |
#11 | WRONG ANSWER | 0.05 s | details |
#12 | WRONG ANSWER | 0.05 s | details |
#13 | WRONG ANSWER | 0.06 s | details |
#14 | WRONG ANSWER | 0.06 s | details |
#15 | WRONG ANSWER | 0.06 s | details |
#16 | WRONG ANSWER | 0.06 s | details |
#17 | WRONG ANSWER | 0.06 s | details |
#18 | ACCEPTED | 0.06 s | details |
#19 | WRONG ANSWER | 0.06 s | details |
#20 | WRONG ANSWER | 0.05 s | details |
#21 | WRONG ANSWER | 0.05 s | details |
#22 | WRONG ANSWER | 0.06 s | details |
#23 | WRONG ANSWER | 0.06 s | details |
#24 | WRONG ANSWER | 0.06 s | details |
#25 | WRONG ANSWER | 0.06 s | details |
#26 | WRONG ANSWER | 0.05 s | details |
#27 | WRONG ANSWER | 0.05 s | details |
#28 | WRONG ANSWER | 0.07 s | details |
#29 | ACCEPTED | 0.05 s | details |
#30 | WRONG ANSWER | 0.06 s | details |
#31 | WRONG ANSWER | 0.06 s | details |
#32 | WRONG ANSWER | 0.06 s | details |
#33 | WRONG ANSWER | 0.06 s | details |
#34 | ACCEPTED | 0.06 s | details |
#35 | ACCEPTED | 0.06 s | details |
#36 | ACCEPTED | 0.05 s | details |
#37 | ACCEPTED | 0.06 s | details |
#38 | ACCEPTED | 0.05 s | details |
#39 | ACCEPTED | 0.06 s | details |
#40 | ACCEPTED | 0.05 s | details |
#41 | ACCEPTED | 0.05 s | details |
#42 | ACCEPTED | 0.06 s | details |
#43 | ACCEPTED | 0.06 s | details |
#44 | ACCEPTED | 0.06 s | details |
#45 | ACCEPTED | 0.06 s | details |
#46 | ACCEPTED | 0.05 s | details |
#47 | ACCEPTED | 0.05 s | details |
#48 | ACCEPTED | 0.06 s | details |
#49 | ACCEPTED | 0.06 s | details |
#50 | ACCEPTED | 0.05 s | details |
#51 | ACCEPTED | 0.05 s | details |
#52 | ACCEPTED | 0.07 s | details |
#53 | ACCEPTED | 0.05 s | details |
#54 | ACCEPTED | 0.06 s | details |
Code
#include <iostream> using namespace std; int N; int t[1010][1010]; int mna[1010]; char D[1010]; int L[1010]; int main(){ cin >> N; for (int i=1; i<=N; ++i) cin >> D[i] >> L[i]; mna[0]=0; int ans=0; for (int i=1; i<=N; ++i){ if (D[i]=='n'){ mna[i]=mna[i-1]; continue; } mna[i]=1000000000; for (int j=1; j<=L[i]; ++j){ if (!t[i][j]){ t[i][j]=mna[i-1]+1; for (int k=0; i+k<=N; ++k){ if (D[i+k]=='n' && L[i+k]>=j) break; t[i+k][j]=t[i][j]; } } mna[i]=min(mna[i], t[i][j]); } ans=max(ans, mna[i]); } cout << ans << "\n"; }
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
576 y 514 n 505 y 613 y 641 ... |
correct output |
---|
117 |
user output |
---|
81 |
Test 2
Verdict: WRONG ANSWER
input |
---|
789 y 174 y 184 y 916 n 489 ... |
correct output |
---|
162 |
user output |
---|
59 |
Test 3
Verdict: WRONG ANSWER
input |
---|
153 y 749 n 255 y 728 n 725 ... |
correct output |
---|
37 |
user output |
---|
33 |
Test 4
Verdict: WRONG ANSWER
input |
---|
554 y 714 n 389 n 123 y 954 ... |
correct output |
---|
122 |
user output |
---|
65 |
Test 5
Verdict: WRONG ANSWER
input |
---|
572 n 81 y 160 y 262 y 616 ... |
correct output |
---|
122 |
user output |
---|
74 |
Test 6
Verdict: WRONG ANSWER
input |
---|
426 n 977 y 656 n 100 n 28 ... |
correct output |
---|
83 |
user output |
---|
43 |
Test 7
Verdict: ACCEPTED
input |
---|
3 y 7 y 6 n 5 |
correct output |
---|
1 |
user output |
---|
1 |
Test 8
Verdict: WRONG ANSWER
input |
---|
166 n 955 y 364 y 372 y 621 ... |
correct output |
---|
41 |
user output |
---|
30 |
Test 9
Verdict: WRONG ANSWER
input |
---|
352 n 342 y 828 n 925 y 652 ... |
correct output |
---|
69 |
user output |
---|
23 |
Test 10
Verdict: WRONG ANSWER
input |
---|
304 y 962 y 712 n 754 n 359 ... |
correct output |
---|
69 |
user output |
---|
53 |
Test 11
Verdict: WRONG ANSWER
input |
---|
836 n 890 y 790 y 406 n 127 ... |
correct output |
---|
171 |
user output |
---|
116 |
Test 12
Verdict: WRONG ANSWER
input |
---|
1000 y 198 n 603 n 511 y 207 ... |
correct output |
---|
209 |
user output |
---|
101 |
Test 13
Verdict: WRONG ANSWER
input |
---|
1000 n 548 n 362 y 298 n 576 ... |
correct output |
---|
207 |
user output |
---|
122 |
Test 14
Verdict: WRONG ANSWER
input |
---|
1000 y 891 n 240 n 61 y 226 ... |
correct output |
---|
205 |
user output |
---|
129 |
Test 15
Verdict: WRONG ANSWER
input |
---|
1000 y 760 y 165 y 592 y 73 ... |
correct output |
---|
228 |
user output |
---|
153 |
Test 16
Verdict: WRONG ANSWER
input |
---|
1000 y 220 n 377 n 312 n 750 ... |
correct output |
---|
217 |
user output |
---|
148 |
Test 17
Verdict: WRONG ANSWER
input |
---|
1000 n 390 n 932 y 505 n 687 ... |
correct output |
---|
208 |
user output |
---|
100 |
Test 18
Verdict: ACCEPTED
input |
---|
3 y 7 n 6 y 5 |
correct output |
---|
2 |
user output |
---|
2 |
Test 19
Verdict: WRONG ANSWER
input |
---|
1000 y 140 y 896 y 599 n 308 ... |
correct output |
---|
214 |
user output |
---|
105 |
Test 20
Verdict: WRONG ANSWER
input |
---|
1000 y 107 y 681 y 755 y 51 ... |
correct output |
---|
215 |
user output |
---|
148 |
Test 21
Verdict: WRONG ANSWER
input |
---|
1000 y 537 y 404 y 445 n 934 ... |
correct output |
---|
211 |
user output |
---|
141 |
Test 22
Verdict: WRONG ANSWER
input |
---|
1000 n 597 y 510 n 464 n 76 ... |
correct output |
---|
196 |
user output |
---|
64 |
Test 23
Verdict: WRONG ANSWER
input |
---|
819 n 802 y 230 n 554 y 774 ... |
correct output |
---|
263 |
user output |
---|
113 |
Test 24
Verdict: WRONG ANSWER
input |
---|
307 n 667 y 198 n 985 y 531 ... |
correct output |
---|
95 |
user output |
---|
55 |
Test 25
Verdict: WRONG ANSWER
input |
---|
131 n 149 y 274 n 843 y 526 ... |
correct output |
---|
39 |
user output |
---|
29 |
Test 26
Verdict: WRONG ANSWER
input |
---|
807 n 229 y 726 n 63 y 923 ... |
correct output |
---|
256 |
user output |
---|
81 |
Test 27
Verdict: WRONG ANSWER
input |
---|
38 n 840 y 592 n 479 y 612 ... |
correct output |
---|
13 |
user output |
---|
9 |
Test 28
Verdict: WRONG ANSWER
input |
---|
699 n 945 y 34 n 441 y 601 ... |
correct output |
---|
237 |
user output |
---|
146 |
Test 29
Verdict: ACCEPTED
input |
---|
6 y 4 n 5 y 4 y 6 ... |
correct output |
---|
2 |
user output |
---|
2 |
Test 30
Verdict: WRONG ANSWER
input |
---|
957 n 513 y 323 n 105 y 961 ... |
correct output |
---|
333 |
user output |
---|
174 |
Test 31
Verdict: WRONG ANSWER
input |
---|
156 n 269 y 430 n 375 y 204 ... |
correct output |
---|
52 |
user output |
---|
36 |
Test 32
Verdict: WRONG ANSWER
input |
---|
760 n 146 y 180 n 861 y 743 ... |
correct output |
---|
249 |
user output |
---|
121 |
Test 33
Verdict: WRONG ANSWER
input |
---|
323 n 662 y 7 n 128 y 836 ... |
correct output |
---|
106 |
user output |
---|
57 |
Test 34
Verdict: ACCEPTED
input |
---|
373 n 100 n 995 n 435 n 946 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 35
Verdict: ACCEPTED
input |
---|
220 y 38 y 846 y 547 y 639 ... |
correct output |
---|
1 |
user output |
---|
1 |
Test 36
Verdict: ACCEPTED
input |
---|
981 n 952 n 180 n 735 n 406 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 37
Verdict: ACCEPTED
input |
---|
758 y 474 y 790 y 199 y 367 ... |
correct output |
---|
1 |
user output |
---|
1 |
Test 38
Verdict: ACCEPTED
input |
---|
262 n 837 n 221 n 836 n 371 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 39
Verdict: ACCEPTED
input |
---|
969 y 122 y 546 y 211 y 719 ... |
correct output |
---|
1 |
user output |
---|
1 |
Test 40
Verdict: ACCEPTED
input |
---|
773 n 368 n 640 n 356 n 39 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 41
Verdict: ACCEPTED
input |
---|
803 y 79 y 111 y 459 y 755 ... |
correct output |
---|
1 |
user output |
---|
1 |
Test 42
Verdict: ACCEPTED
input |
---|
190 n 192 n 453 n 996 n 894 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 43
Verdict: ACCEPTED
input |
---|
193 y 86 y 673 y 18 y 271 ... |
correct output |
---|
1 |
user output |
---|
1 |
Test 44
Verdict: ACCEPTED
input |
---|
1000 n 1000 n 1000 n 1000 y 1000 ... |
correct output |
---|
250 |
user output |
---|
250 |
Test 45
Verdict: ACCEPTED
input |
---|
1000 n 1000 y 1000 y 1000 y 1000 ... |
correct output |
---|
245 |
user output |
---|
245 |
Test 46
Verdict: ACCEPTED
input |
---|
1000 y 1000 n 1000 n 1000 y 1000 ... |
correct output |
---|
242 |
user output |
---|
242 |
Test 47
Verdict: ACCEPTED
input |
---|
1000 n 1000 n 1000 n 1000 y 1000 ... |
correct output |
---|
237 |
user output |
---|
237 |
Test 48
Verdict: ACCEPTED
input |
---|
1000 y 1000 y 1000 n 1000 y 1000 ... |
correct output |
---|
243 |
user output |
---|
243 |
Test 49
Verdict: ACCEPTED
input |
---|
1000 n 1000 n 1000 n 1000 n 1000 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 50
Verdict: ACCEPTED
input |
---|
1000 y 1000 y 1000 y 1000 y 1000 ... |
correct output |
---|
1 |
user output |
---|
1 |
Test 51
Verdict: ACCEPTED
input |
---|
1000 n 1000 n 1000 n 1000 n 1000 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 52
Verdict: ACCEPTED
input |
---|
1000 y 1000 y 1000 y 1000 y 1000 ... |
correct output |
---|
1 |
user output |
---|
1 |
Test 53
Verdict: ACCEPTED
input |
---|
1000 n 1000 n 1000 n 1000 n 1000 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 54
Verdict: ACCEPTED
input |
---|
5 y 10 y 5 n 4 y 8 ... |
correct output |
---|
1 |
user output |
---|
1 |