QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#112679 | #6339. Cookies | Flamire | 19 | 23ms | 59688kb | C++17 | 1.5kb | 2023-06-12 21:20:36 | 2023-06-12 21:20:39 |
Judging History
answer
#include <bits/stdc++.h>
#define pii pair<int,int>
#define s1 first
#define s2 second
using namespace std;
int n,a[100011],tot,m,b[100011],sum[15011],buc[15011],nxt[15011];
vector<bitset<15011> > dp[15011];
bitset<15011> I;vector<int> v,tmp;
priority_queue<pii > pq;
int main()
{
scanf("%d",&n);for(int i=1;i<=n;++i)scanf("%d",a+i),++buc[a[i]],tot+=a[i];
scanf("%d",&m);for(int i=1;i<=m;++i)scanf("%d",b+i);
int cnt=n;
for(int i=1;i<=15000;++i)
{
sum[i]=sum[i-1]+cnt;
cnt-=buc[i];
}
for(int i=0;i<15011;++i)I[i]=1;
dp[0].resize(m+1);dp[0][m][0]=1;
for(int i=1;i<=tot+1;++i)
{
for(int j=int(dp[i-1].size())-2;j>0;--j)dp[i-1][j]|=dp[i-1][j+1];
if(!dp[i-1].size())break;
while(!dp[i-1].back().any())dp[i-1].pop_back();
dp[i-1].shrink_to_fit();
if(dp[i-1].size()>1&&dp[i-1][1][tot])break;
if(i<=tot)
{
dp[i].resize(dp[i-1].size());
for(int j=1;j<dp[i-1].size();++j)dp[i][j]=(dp[i-1][j]<<b[j])&(I>>15011-sum[i]-1);
}
}
int I=-1,J=1,K=tot;
for(int i=1;i<=tot;++i)
{
if(J<dp[i].size()&&dp[i][J][K]){I=i;break;}
}
if(!~I){printf("-1\n");return 0;}
printf("%d\n",I);
while(I!=0)
{
while(J<dp[I].size()-1&&dp[I][J+1][K])++J;
v.push_back(b[J]);--I;K-=b[J];
}
for(int i=1;i<=n;++i)pq.push(pii(a[i],i));
sort(v.begin(),v.end());
for(int i=0;i<v.size();++i)
{
printf("%d ",v[i]);
tmp.clear();
for(int _=0;_<v[i];++_)tmp.push_back(pq.top().s2),pq.pop();
for(int x:tmp)--a[x],printf("%d ",x);putchar(10);
for(int x:tmp)pq.push(pii(a[x],x));
}return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Runtime Error
Test #1:
score: 6
Accepted
time: 2ms
memory: 4088kb
input:
1 1 1 1
output:
1 1 1
result:
ok good!
Test #2:
score: 0
Accepted
time: 1ms
memory: 4036kb
input:
2 1 1 1 1
output:
2 1 2 1 1
result:
ok good!
Test #3:
score: 0
Accepted
time: 0ms
memory: 4208kb
input:
2 1 1 1 2
output:
1 2 2 1
result:
ok good!
Test #4:
score: 0
Accepted
time: 2ms
memory: 4148kb
input:
2 1 1 2 1 2
output:
1 2 2 1
result:
ok good!
Test #5:
score: 0
Accepted
time: 1ms
memory: 4032kb
input:
4 1 1 1 1 2 2 3
output:
2 2 4 3 2 2 1
result:
ok good!
Test #6:
score: 0
Accepted
time: 2ms
memory: 4048kb
input:
8 1 1 1 1 1 1 1 1 3 1 4 5
output:
2 4 8 7 6 5 4 4 3 2 1
result:
ok good!
Test #7:
score: 0
Accepted
time: 0ms
memory: 5936kb
input:
500 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
output:
500 1 500 1 499 1 498 1 497 1 496 1 495 1 494 1 493 1 492 1 491 1 490 1 489 1 488 1 487 1 486 1 485 1 484 1 483 1 482 1 481 1 480 1 479 1 478 1 477 1 476 1 475 1 474 1 473 1 472 1 471 1 470 1 469 1 468 1 467 1 466 1 465 1 464 1 463 1 462 1 461 1 460 1 459 1 ...
result:
ok good!
Test #8:
score: 0
Accepted
time: 1ms
memory: 4268kb
input:
500 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
output:
1 500 500 499 498 497 496 495 494 493 492 491 490 489 488 487 486 485 484 483 482 481 480 479 478 477 476 475 474 473 472 471 470 469 468 467 466 465 464 463 462 461 460 459 458 457 456 455 454 453 452 451 450 449 448 447 446 445 444 443 442 441 440 439 438 437 436 435 434 433 432 431 430 429 428 42...
result:
ok good!
Test #9:
score: 0
Accepted
time: 5ms
memory: 6752kb
input:
500 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
output:
2 250 500 499 498 497 496 495 494 493 492 491 490 489 488 487 486 485 484 483 482 481 480 479 478 477 476 475 474 473 472 471 470 469 468 467 466 465 464 463 462 461 460 459 458 457 456 455 454 453 452 451 450 449 448 447 446 445 444 443 442 441 440 439 438 437 436 435 434 433 432 431 430 429 428 42...
result:
ok good!
Test #10:
score: -6
Runtime Error
input:
500 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
output:
result:
Subtask #2:
score: 7
Accepted
Test #28:
score: 7
Accepted
time: 3ms
memory: 4140kb
input:
1 15 1 1
output:
15 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
result:
ok good!
Test #29:
score: 0
Accepted
time: 6ms
memory: 6060kb
input:
1 500 1 1
output:
500 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1...
result:
ok good!
Test #30:
score: 0
Accepted
time: 2ms
memory: 15120kb
input:
1 3000 1 1
output:
3000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
result:
ok good!
Test #31:
score: 0
Accepted
time: 23ms
memory: 59688kb
input:
1 15000 1 1
output:
15000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
result:
ok good!
Test #32:
score: 0
Accepted
time: 0ms
memory: 4036kb
input:
2 2 1 1 1
output:
3 1 1 1 2 1 1
result:
ok good!
Test #33:
score: 0
Accepted
time: 2ms
memory: 4148kb
input:
2 1 2 1 2
output:
-1
result:
ok no solution
Test #34:
score: 0
Accepted
time: 2ms
memory: 4260kb
input:
3 1 2 3 1 2
output:
3 2 3 2 2 3 2 2 3 1
result:
ok good!
Test #35:
score: 0
Accepted
time: 0ms
memory: 4000kb
input:
3 3 2 1 1 3
output:
-1
result:
ok no solution
Test #36:
score: 0
Accepted
time: 2ms
memory: 4152kb
input:
3 2 2 2 1 2
output:
3 2 3 2 2 1 3 2 2 1
result:
ok good!
Test #37:
score: 0
Accepted
time: 1ms
memory: 4220kb
input:
15 50 49 48 47 46 45 44 43 42 41 40 2 1 1 1 1 10
output:
50 10 1 2 3 4 5 6 7 8 9 10 10 1 2 3 4 5 6 7 8 9 11 10 1 2 3 4 5 6 7 8 10 9 10 1 2 3 4 5 6 7 8 11 10 10 1 2 3 4 5 6 7 9 8 11 10 1 2 3 4 5 6 7 10 9 8 10 1 2 3 4 5 6 7 11 10 9 10 1 2 3 4 5 6 8 7 11 10 10 1 2 3 4 5 6 9 8 7 11 10 1 2 3 4 5 6 10 9 8 7 10 1 2 3 4 5 6 11 10 9 8 10 1 2 3 4 5 7 6 1...
result:
ok good!
Test #38:
score: 0
Accepted
time: 2ms
memory: 4140kb
input:
15 51 49 48 47 46 45 44 43 42 41 40 1 1 1 1 1 10
output:
-1
result:
ok no solution
Test #39:
score: 0
Accepted
time: 2ms
memory: 17952kb
input:
10 430 3078 390 349 3750 906 377 3374 1795 551 1 4
output:
3750 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9 4 5 8 2 9...
result:
ok good!
Test #40:
score: 0
Accepted
time: 9ms
memory: 22636kb
input:
500 4 99 56 16 7 39 5 8 3 18 15 30 19 27 46 47 24 55 1 7 21 1 13 5 53 32 12 98 12 121 3 118 25 15 8 32 29 7 13 3 29 94 22 4 12 37 15 52 14 9 59 22 3 16 9 77 5 17 41 22 16 6 3 32 33 34 18 1 28 4 72 4 3 40 21 13 22 16 42 77 2 16 1 1 10 11 3 34 21 28 4 173 24 57 17 9 20 116 21 72 17 165 28 30 6 13 86 1...
output:
5000 3 238 92 383 3 238 92 383 3 238 251 92 3 238 383 251 3 238 92 383 3 238 251 92 3 238 383 251 3 238 211 92 3 238 383 251 3 238 211 92 3 238 383 251 3 238 211 92 3 238 383 251 3 238 211 102 3 238 92 383 3 238 251 211 3 238 102 92 3 238 383 251 3 238 211 102 3 238 92 383 3 238 ...
result:
ok good!
Test #41:
score: 0
Accepted
time: 2ms
memory: 5000kb
input:
500 30 23 12 48 4 11 119 12 15 24 33 9 22 46 42 7 18 49 9 1 43 3 4 43 31 11 4 7 33 30 13 5 36 3 20 2 40 37 7 1 8 43 34 12 2 37 99 38 59 36 24 18 68 23 9 24 33 1 13 10 12 2 7 7 1 5 73 7 7 32 2 13 7 49 41 20 160 69 11 61 25 35 15 22 32 66 47 45 34 14 12 7 9 43 4 42 2 24 29 16 11 6 5 5 8 11 42 3 48 20 ...
output:
200 75 496 284 77 297 336 316 7 470 435 489 195 447 319 264 196 265 47 335 389 200 197 449 434 366 233 401 144 131 223 446 238 484 474 397 433 383 303 67 115 391 398 355 305 236 114 442 368 78 404 163 116 53 443 226 86 497 493 458 364 467 327 127 388 267 465 80 175 126 381 274 209 49 407 298 121 75...
result:
ok good!
Test #42:
score: 0
Accepted
time: 4ms
memory: 4228kb
input:
500 6 60 24 11 17 58 8 42 30 60 38 34 54 23 5 12 32 6 35 11 60 42 35 60 25 60 37 40 5 22 24 26 17 17 60 21 7 29 13 7 56 12 8 16 8 20 11 60 12 60 32 56 30 55 12 23 26 60 60 6 18 60 60 21 21 16 28 23 60 9 16 4 8 5 20 4 60 59 39 20 8 27 8 7 6 8 10 30 18 15 60 60 41 48 17 24 17 60 10 42 6 13 22 21 14 18...
output:
60 250 500 491 485 480 479 466 460 455 452 450 446 439 426 425 421 420 418 400 396 388 383 363 359 353 342 339 330 329 325 321 314 306 302 292 290 289 283 280 273 272 253 248 246 242 241 234 226 223 213 200 197 196 187 180 178 170 159 147 146 144 139 137 131 129 128 108 98 92 91 77 69 63 62 59 58 50...
result:
ok good!
Test #43:
score: 0
Accepted
time: 4ms
memory: 4476kb
input:
122 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 121 ...
output:
122 121 122 121 120 119 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 103 102 101 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33...
result:
ok good!
Test #44:
score: 0
Accepted
time: 2ms
memory: 4080kb
input:
498 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 ...
output:
3 332 498 497 496 495 494 493 492 491 490 489 488 487 486 485 484 483 482 481 480 479 478 477 476 475 474 473 472 471 470 469 468 467 466 465 464 463 462 461 460 459 458 457 456 455 454 453 452 451 450 449 448 447 446 445 444 443 442 441 440 439 438 437 436 435 434 433 432 431 430 429 428 427 426 42...
result:
ok good!
Subtask #3:
score: 12
Accepted
Test #45:
score: 12
Accepted
time: 0ms
memory: 4076kb
input:
2 7 8 2 1 2
output:
8 1 2 2 2 1 2 2 1 2 2 1 2 2 1 2 2 1 2 2 1 2 2 1
result:
ok good!
Test #46:
score: 0
Accepted
time: 2ms
memory: 4060kb
input:
3 5 4 6 2 2 3
output:
6 2 3 1 2 3 2 2 3 1 3 3 2 1 3 3 2 1 3 3 2 1
result:
ok good!
Test #47:
score: 0
Accepted
time: 2ms
memory: 4136kb
input:
3 4 2 9 3 1 2 3
output:
9 1 3 1 3 1 3 2 3 1 2 3 1 2 3 2 2 3 1 2 3 2 2 3 1
result:
ok good!
Test #48:
score: 0
Accepted
time: 0ms
memory: 4100kb
input:
4 3 5 4 3 2 3 4
output:
5 3 2 3 4 3 2 3 1 3 2 4 3 3 2 1 4 3 3 2 1
result:
ok good!
Test #49:
score: 0
Accepted
time: 0ms
memory: 4088kb
input:
4 1 4 5 5 3 1 3 4
output:
5 3 4 3 2 3 4 3 2 3 4 3 2 3 4 3 2 3 4 3 1
result:
ok good!
Test #50:
score: 0
Accepted
time: 3ms
memory: 4292kb
input:
4 3 3 6 3 3 2 3 4
output:
6 2 3 4 2 3 2 2 3 1 3 3 4 2 3 3 1 4 3 3 2 1
result:
ok good!
Test #51:
score: 0
Accepted
time: 3ms
memory: 4064kb
input:
5 4 3 3 3 1 3 2 4 5
output:
4 2 1 4 4 3 2 1 4 4 3 2 1 5 4 4 3 2 1
result:
ok good!
Test #52:
score: 0
Accepted
time: 2ms
memory: 4108kb
input:
5 4 3 3 3 2 3 3 4 5
output:
4 3 1 4 3 4 2 1 5 4 4 3 2 1 5 4 4 3 2 1
result:
ok good!
Test #53:
score: 0
Accepted
time: 3ms
memory: 4284kb
input:
5 4 4 4 2 1 3 2 4 5
output:
5 2 3 2 2 1 3 2 2 1 4 4 3 2 1 5 5 4 3 2 1
result:
ok good!
Test #54:
score: 0
Accepted
time: 2ms
memory: 4284kb
input:
5 3 3 3 3 3 3 1 2 4
output:
5 1 5 2 4 3 4 2 1 5 4 4 3 2 1 5 4 4 3 2 1
result:
ok good!
Test #55:
score: 0
Accepted
time: 2ms
memory: 4100kb
input:
6 3 3 3 2 2 2 3 2 4 6
output:
-1
result:
ok no solution
Test #56:
score: 0
Accepted
time: 0ms
memory: 4080kb
input:
6 3 3 3 2 2 2 3 2 5 6
output:
3 5 3 2 1 6 5 5 4 3 2 1 6 5 5 4 3 2 1
result:
ok good!
Test #57:
score: 0
Accepted
time: 2ms
memory: 4124kb
input:
6 4 4 3 2 1 1 3 1 3 5
output:
5 3 2 1 3 3 2 1 4 3 3 2 1 3 6 5 4 3 3 2 1
result:
ok good!
Test #58:
score: 0
Accepted
time: 2ms
memory: 4080kb
input:
6 7 2 2 2 1 1 5 2 3 4 5 6
output:
7 2 1 4 2 1 3 2 1 2 2 1 6 2 1 5 2 1 4 3 3 2 1
result:
ok good!
Test #59:
score: 0
Accepted
time: 2ms
memory: 4056kb
input:
7 3 3 3 2 2 1 1 3 1 4 6
output:
4 1 3 4 2 1 5 4 4 3 2 1 7 6 6 5 4 3 2 1
result:
ok good!
Test #60:
score: 0
Accepted
time: 2ms
memory: 4120kb
input:
7 4 4 3 1 1 1 1 3 1 4 6
output:
6 1 2 1 1 1 3 4 2 1 3 7 4 2 1 6 5 4 4 3 2 1
result:
ok good!
Test #61:
score: 0
Accepted
time: 2ms
memory: 4260kb
input:
8 2 2 2 2 2 2 2 1 6 1 2 3 4 6 7
output:
3 4 7 6 5 4 4 3 2 1 8 7 7 6 5 4 3 2 1
result:
ok good!
Test #62:
score: 0
Accepted
time: 2ms
memory: 4272kb
input:
8 3 3 3 2 1 1 1 1 4 4 6 7 8
output:
3 4 3 2 1 4 4 3 2 1 8 7 7 6 5 4 3 2 1
result:
ok good!
Test #63:
score: 0
Accepted
time: 2ms
memory: 4068kb
input:
8 4 3 3 1 1 1 1 1 4 1 6 7 8
output:
8 1 1 1 3 1 2 1 1 1 3 1 2 1 1 8 8 7 6 5 4 3 2 1
result:
ok good!
Test #64:
score: 0
Accepted
time: 2ms
memory: 4048kb
input:
9 4 3 2 1 1 1 1 1 1 4 3 4 5 7
output:
4 3 1 2 3 4 1 2 9 8 4 1 7 6 5 4 4 3 2 1
result:
ok good!
Test #65:
score: 0
Accepted
time: 2ms
memory: 4324kb
input:
12 3 2 1 1 1 1 1 1 1 1 1 1 9 1 4 5 6 7 8 9 10 11
output:
3 5 1 2 12 11 10 5 1 9 8 7 6 5 5 4 3 2 1
result:
ok good!
Test #66:
score: 0
Accepted
time: 2ms
memory: 4296kb
input:
14 2 1 1 1 1 1 1 1 1 1 1 1 1 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14
output:
2 7 1 14 13 12 11 10 9 8 8 7 6 5 4 3 2 1
result:
ok good!
Test #67:
score: 0
Accepted
time: 2ms
memory: 4260kb
input:
4 2 2 2 1 2 1 4
output:
4 1 3 1 2 1 1 4 4 3 2 1
result:
ok good!
Subtask #4:
score: 0
Skipped
Dependency #1:
0%
Subtask #5:
score: 0
Skipped
Dependency #4:
0%
Subtask #6:
score: 0
Skipped
Dependency #1:
0%