QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#771736 | #5146. Skills | nothing_ | WA | 186ms | 435076kb | C++14 | 1.4kb | 2024-11-22 15:21:14 | 2024-11-22 15:21:18 |
Judging History
answer
#include<bits/stdc++.h>
//#define int long long
using namespace std;
int read() {
int x=0, w=1; char ch=getchar();
while(!isdigit(ch)) {if(ch=='-') w=-1; ch=getchar();}
while(isdigit(ch)) {x=x*10+(ch-'0'); ch=getchar();}
return x*w;
}
const int N=1e3+10;
const int inf=0x3f3f3f3f;
int n, a[N][5], f[N][5][210][210];
int get(int x) {
return (x>3)?x-3:x;
}
int main() {
int T; T=read();
while(T--) {
n=read();
for(int i=1;i<=n;i++)
for(int j=1;j<=3;j++) a[i][j]=read();
for(int i=0;i<2;i++)
for(int x=0;x<=n;x++)
for(int y=0;y<=n;y++)
for(int j=1;j<=3;j++)
f[i][j][x][y]=0;
for(int i=1;i<=n;i++) {
for(int j=0;j<=min(n, 209);j++)
for(int k=0;k<=min(209, n);k++)
for(int h=1;h<=3;h++) f[i][h][j][k]=0;
for(int j=0;j<=min(209, i);j++)
for(int k=0;k<=min(209, i);k++)
for(int h=1;h<=3;h++) {
int x=j+(j!=0), y=k+(k!=0), lst=f[i-1][h][j][k];
f[i][h][x][y]=max(f[i][h][x][y], lst+a[i][h]-x-y);
f[i][get(h+1)][y][1]=max(f[i][get(h+1)][y][1], lst+a[i][get(h+1)]-1-y);
f[i][get(h+2)][1][x]=max(f[i][get(h+2)][1][x], lst+a[i][get(h+2)]-1-x);
}
}
int ans=0;
for(int i=1;i<=n;i++)
for(int h=1;h<=3;h++)
for(int j=0;j<=min(n, 209);j++)
for(int k=0;k<=min(n, 209);k++)
ans=max(ans, f[i][h][j][k]);
printf("%d\n", ans);
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 10048kb
input:
2 3 1 1 10 1 10 1 10 1 1 5 1 2 3 6 5 4 7 8 9 12 11 10 13 14 15
output:
26 41
result:
ok 2 number(s): "26 41"
Test #2:
score: 0
Accepted
time: 48ms
memory: 178412kb
input:
1 200 6219 3608 2383 1139 2158 8611 6721 8216 8887 8736 6707 9755 7210 248 167 3849 276 8050 971 5062 1914 8290 1562 6017 8993 7990 3460 6323 6099 757 7652 4740 6117 6560 4206 180 3705 8906 5752 9619 8939 9696 793 6680 1777 384 3606 8772 9258 3906 709 4396 5083 6614 6057 4410 3132 8596 825 7437 6098...
output:
1505431
result:
ok 1 number(s): "1505431"
Test #3:
score: 0
Accepted
time: 38ms
memory: 178244kb
input:
1 200 7577 2771 7429 8435 7489 1440 1929 8819 818 7849 8462 8761 3344 5938 3673 9434 8897 6486 4668 636 8139 4777 3305 4238 4221 3326 639 3879 7469 1590 6370 9514 4307 6243 3301 8122 4967 184 9327 6142 1710 399 6814 9296 6270 5663 3564 5442 8315 1295 869 2635 7975 4837 9613 9439 4012 6660 1861 368 8...
output:
1497632
result:
ok 1 number(s): "1497632"
Test #4:
score: 0
Accepted
time: 178ms
memory: 263024kb
input:
1 300 0 10000 0 0 10000 0 0 10000 0 10000 0 0 0 0 10000 10000 0 0 0 0 10000 10000 0 0 0 0 10000 10000 0 0 0 0 10000 10000 0 0 0 0 10000 10000 0 0 0 0 10000 10000 0 0 0 0 10000 10000 0 0 0 0 10000 10000 0 0 0 0 10000 10000 0 0 0 0 10000 10000 0 0 0 0 10000 10000 0 0 0 0 10000 10000 0 0 0 0 10000 1000...
output:
2975228
result:
ok 1 number(s): "2975228"
Test #5:
score: 0
Accepted
time: 186ms
memory: 435076kb
input:
1 500 10000 0 0 10000 0 0 10000 0 0 0 10000 0 0 0 10000 0 10000 0 0 0 10000 0 10000 0 0 0 10000 0 10000 0 0 0 10000 0 10000 0 0 0 10000 0 10000 0 0 0 10000 0 10000 0 0 0 10000 0 10000 0 0 0 10000 0 10000 0 0 0 10000 0 10000 0 0 0 10000 0 10000 0 0 0 10000 0 10000 0 0 0 10000 0 10000 0 0 0 10000 0 10...
output:
4955301
result:
ok 1 number(s): "4955301"
Test #6:
score: -100
Wrong Answer
time: 0ms
memory: 12020kb
input:
20 10 6219 3608 2383 1139 2158 8611 6721 8216 8887 8736 6707 9755 7210 248 167 3849 276 8050 971 5062 1914 8290 1562 6017 8993 7990 3460 0 0 0 10 7652 4740 6117 6560 4206 180 3705 8906 5752 9619 8939 9696 793 6680 1777 384 3606 8772 9258 3906 709 4396 5083 6614 6057 4410 3132 1 0 0 10 6098 4958 7691...
output:
71058 70170 68633 74398 65916 65053 62882 65101 62730 71037 64502 71948 54366 66300 74357 70246 65961 78875 58700 72180
result:
wrong answer 1st numbers differ - expected: '71054', found: '71058'