結果
問題 | No.78 クジ付きアイスバー |
ユーザー | tottoripaper |
提出日時 | 2014-12-09 22:16:01 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 696 ms / 5,000 ms |
コード長 | 1,215 bytes |
コンパイル時間 | 193 ms |
コンパイル使用メモリ | 35,172 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 00:26:32 |
合計ジャッジ時間 | 2,556 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 0 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 5 ms
5,248 KB |
testcase_06 | AC | 9 ms
5,248 KB |
testcase_07 | AC | 10 ms
5,248 KB |
testcase_08 | AC | 20 ms
5,248 KB |
testcase_09 | AC | 71 ms
5,248 KB |
testcase_10 | AC | 22 ms
5,248 KB |
testcase_11 | AC | 5 ms
5,248 KB |
testcase_12 | AC | 15 ms
5,248 KB |
testcase_13 | AC | 24 ms
5,248 KB |
testcase_14 | AC | 118 ms
5,248 KB |
testcase_15 | AC | 114 ms
5,248 KB |
testcase_16 | AC | 8 ms
5,248 KB |
testcase_17 | AC | 12 ms
5,248 KB |
testcase_18 | AC | 21 ms
5,248 KB |
testcase_19 | AC | 37 ms
5,248 KB |
testcase_20 | AC | 53 ms
5,248 KB |
testcase_21 | AC | 32 ms
5,248 KB |
testcase_22 | AC | 23 ms
5,248 KB |
testcase_23 | AC | 0 ms
5,248 KB |
testcase_24 | AC | 1 ms
5,248 KB |
testcase_25 | AC | 0 ms
5,248 KB |
testcase_26 | AC | 0 ms
5,248 KB |
testcase_27 | AC | 0 ms
5,248 KB |
testcase_28 | AC | 1 ms
5,248 KB |
testcase_29 | AC | 1 ms
5,248 KB |
testcase_30 | AC | 1 ms
5,248 KB |
testcase_31 | AC | 0 ms
5,248 KB |
testcase_32 | AC | 0 ms
5,248 KB |
testcase_33 | AC | 1 ms
5,248 KB |
testcase_34 | AC | 4 ms
5,248 KB |
testcase_35 | AC | 18 ms
5,248 KB |
testcase_36 | AC | 32 ms
5,248 KB |
testcase_37 | AC | 27 ms
5,248 KB |
testcase_38 | AC | 696 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:6:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 6 | scanf("%d %d", &N, &K); | ~~~~~^~~~~~~~~~~~~~~~~ main.cpp:9:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | scanf("%s", ice); | ~~~~~^~~~~~~~~~~
ソースコード
#include <cstdio> #include <algorithm> int main(){ int N, K; scanf("%d %d", &N, &K); char ice[100]; scanf("%s", ice); for(int i=N;i<2*N;i++){ice[i] = ice[i-N];} bool bought[100]; std::fill(bought, bought+2*N, false); int cost[100], last = 0; std::fill(cost, cost+2*N, 0); for(int i=0;i<2*N;i++){ if(!bought[i]){ cost[i] = 1; } if(ice[i] == '1'){ if(last+1 < 2*N){bought[last+1] = true; last += 1;} }else if(ice[i] == '2'){ if(last+1 < 2*N){bought[last+1] = true; last += 1;} if(last+1 < 2*N){bought[last+1] = true; last += 1;} } last = std::max(i+1, last); } for(int i=1;i<N;i++){ cost[i] += cost[i-1]; cost[i+N] += cost[i-1+N]; } // for(int i=0;i<2*N;i++){ // printf("%d: %d\n", i, cost[i]); // } int res; if(K <= N){ res = cost[K-1]; }else{ res = cost[N-1]; K -= N; while(K >= N){ res += cost[2*N-1]; K -= N; } res += K>0?cost[K-1+N]:0; } printf("%d\n", res); }