結果
問題 | No.1522 Unfairness |
ユーザー | tails |
提出日時 | 2021-05-30 16:23:28 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 1,337 bytes |
コンパイル時間 | 1,002 ms |
コンパイル使用メモリ | 34,816 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-19 06:15:26 |
合計ジャッジ時間 | 1,435 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,820 KB |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 1 ms
6,820 KB |
testcase_09 | AC | 1 ms
6,816 KB |
testcase_10 | AC | 1 ms
6,816 KB |
testcase_11 | AC | 1 ms
6,820 KB |
testcase_12 | AC | 1 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 1 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 3 ms
6,820 KB |
testcase_17 | AC | 2 ms
6,820 KB |
testcase_18 | AC | 3 ms
6,816 KB |
testcase_19 | AC | 3 ms
6,816 KB |
testcase_20 | AC | 3 ms
6,816 KB |
testcase_21 | AC | 1 ms
6,816 KB |
testcase_22 | AC | 1 ms
6,816 KB |
testcase_23 | AC | 1 ms
6,816 KB |
testcase_24 | AC | 1 ms
6,820 KB |
testcase_25 | AC | 1 ms
6,820 KB |
testcase_26 | AC | 1 ms
6,816 KB |
testcase_27 | AC | 1 ms
6,816 KB |
testcase_28 | AC | 1 ms
6,820 KB |
testcase_29 | AC | 1 ms
6,820 KB |
コンパイルメッセージ
main.c:44:1: warning: return type defaults to 'int' [-Wimplicit-int] 44 | main(){ | ^~~~ main.c: In function 'main': main.c:75:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration] 75 | write(1,wp,wbuf+sizeof wbuf-wp); | ^~~~~ main.c:76:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration] 76 | _exit(0); | ^~~~~ | _Exit
ソースコード
#pragma GCC optimize("Ofast") #pragma GCC target("avx2") char*mmap(); #define rd(v) int v=0;{int _c;while(_c=*rp++-48,_c>=0)v=v*10+_c;} #define wt_rev(v) {long _z=v;do*--wp=_z%10+48;while(_z/=10);} #define rep(v,e) for(int v=0;v<e;++v) #define rep3(v,s,e) for(int v=s;v<e;++v) #define min(a,b) (a<=b?a:b) #define max(a,b) (a>=b?a:b) #define chmax(v,a) (v=max(v,a)) void radix_sort_aux(unsigned*a,unsigned*b,int n){ int c[256]; for(int i=0;i<256;++i){ c[i]=0; } for(int i=0;i<n;++i){ ++c[a[i]&255]; } int t=0; for(int i=0;i<256;++i){ int u=c[i]; c[i]=t; t+=u; } for(int i=0;i<n;++i){ b[c[a[i]&255]++]=a[i]>>8|a[i]<<24; } } void radix_sort(unsigned*a,int n){ radix_sort_aux(a,a+n,n); radix_sort_aux(a+n,a,n); radix_sort_aux(a,a+n,n); radix_sort_aux(a+n,a,n); } int a[3004*2]; int dp[3][3001]; main(){ char*rp=mmap(0l,1l<<25,1,2,0,0ll); rd(n); rd(m); ++m; rep(i,n){ rd(ai); a[i]=ai; } radix_sort(a,n); int j0=0,j1=1,j2=2; rep(i,n-1){ { int t=j0; j0=j1; j1=j2; j2=t; } int a1=a[i+1]; int a1a0=min(m,a1-a[i]); int k=0; for(;k<a1a0;++k){ dp[j2][k]=dp[j1][k]; } for(;k<m;++k){ dp[j2][k]=max(dp[j1][k],dp[j0][k-a1a0]+a1); } } int res=0; rep(k,m){ chmax(res,dp[j2][k]); } char wbuf[64],*wp=wbuf+sizeof wbuf; wt_rev(res); write(1,wp,wbuf+sizeof wbuf-wp); _exit(0); }