結果
問題 | No.1492 01文字列と転倒 |
ユーザー | tails |
提出日時 | 2021-06-01 13:03:13 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 6 ms / 4,000 ms |
コード長 | 1,079 bytes |
コンパイル時間 | 313 ms |
コンパイル使用メモリ | 34,612 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-09 00:12:59 |
合計ジャッジ時間 | 1,592 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 6 ms
5,248 KB |
testcase_03 | AC | 5 ms
5,248 KB |
testcase_04 | AC | 5 ms
5,248 KB |
testcase_05 | AC | 5 ms
5,248 KB |
testcase_06 | AC | 4 ms
5,248 KB |
testcase_07 | AC | 5 ms
5,248 KB |
testcase_08 | AC | 6 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 5 ms
5,248 KB |
testcase_15 | AC | 1 ms
5,248 KB |
testcase_16 | AC | 1 ms
5,248 KB |
testcase_17 | AC | 5 ms
5,248 KB |
testcase_18 | AC | 1 ms
5,248 KB |
testcase_19 | AC | 1 ms
5,248 KB |
testcase_20 | AC | 1 ms
5,248 KB |
testcase_21 | AC | 4 ms
5,248 KB |
testcase_22 | AC | 1 ms
5,248 KB |
testcase_23 | AC | 1 ms
5,248 KB |
コンパイルメッセージ
main.c:20:1: warning: return type defaults to 'int' [-Wimplicit-int] 20 | main(){ | ^~~~ main.c: In function 'main': main.c:22:9: warning: implicit declaration of function 'read'; did you mean 'rd'? [-Wimplicit-function-declaration] 22 | read(0,rbuf,sizeof rbuf); | ^~~~ | rd main.c:59:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration] 59 | write(1,wp,wbuf+sizeof wbuf-wp); | ^~~~~ main.c:60:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration] 60 | _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;} char wbuf[1<<25]; #define wt(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 rrep(v,s) for(int v=s;v--;) #define rrep3(v,s,e) for(int v=s;--v>=e;) #define max(a,b) (a>=b?a:b) #define min(a,b) (a<=b?a:b) #define W 10001 int dp[301*W]; main(){ char rbuf[64]; read(0,rbuf,sizeof rbuf); char*rp=rbuf; rd(n); rd(m); int klim=n*(n-1)/2+1; dp[n*2*W+0]=1; rep(i,n*2){ int *dpi=dp+(n*2-i-1)*W; int jmax=i+3>>1; int klimi=min(klim,(i+1)/2*(i/2)+1); rep3(j,max(-n+i+1,0),jmax){ int *dpij=dpi+j*W; rep3(k,j,klimi){ int x=dpij[k]+dpij[k-j+W]; dpij[k]=x-(x>=m?m:0); } } { int j=i+3>>1; int *dpij=dpi+j*W; rep(k,klimi){ dpij[k]=0; } } } char*wp=wbuf+sizeof wbuf; rrep3(k,n*n+1,klim){ *--wp=10; *--wp='0'; } rrep(k,klim){ *--wp=10; wt(dp[n*W+k]); } write(1,wp,wbuf+sizeof wbuf-wp); _exit(0); }