結果
問題 | No.78 クジ付きアイスバー |
ユーザー | itezpace |
提出日時 | 2016-09-25 08:10:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,522 bytes |
コンパイル時間 | 634 ms |
コンパイル使用メモリ | 58,832 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-18 11:41:46 |
合計ジャッジ時間 | 1,855 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 1 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 1 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 1 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 1 ms
6,820 KB |
testcase_16 | AC | 2 ms
6,820 KB |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 1 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,820 KB |
testcase_20 | AC | 2 ms
6,816 KB |
testcase_21 | AC | 1 ms
6,816 KB |
testcase_22 | AC | 2 ms
6,816 KB |
testcase_23 | AC | 1 ms
6,816 KB |
testcase_24 | AC | 1 ms
6,816 KB |
testcase_25 | AC | 2 ms
6,820 KB |
testcase_26 | AC | 1 ms
6,820 KB |
testcase_27 | AC | 2 ms
6,820 KB |
testcase_28 | AC | 2 ms
6,816 KB |
testcase_29 | AC | 1 ms
6,820 KB |
testcase_30 | AC | 1 ms
6,820 KB |
testcase_31 | AC | 1 ms
6,816 KB |
testcase_32 | AC | 1 ms
6,816 KB |
testcase_33 | AC | 2 ms
6,816 KB |
testcase_34 | AC | 1 ms
6,820 KB |
testcase_35 | AC | 2 ms
6,820 KB |
testcase_36 | AC | 1 ms
6,816 KB |
testcase_37 | AC | 2 ms
6,820 KB |
testcase_38 | AC | 1 ms
6,820 KB |
ソースコード
#include <iostream> #include <string> using namespace std; pair<int,int> calc(string s,int x){ pair<int,int> p; int y=0; for(int i=0; i<s.size(); ++i){ if(s[i]=='0'){ if(x>0) x-=1; else y+=1; } else if(s[i]=='1'){ if(x>0) x-=1, x+=1; else x+=1, y+=1; } else if(s[i]=='2'){ if(x>0) x-=1, x+=2; else x+=2, y+=1; } } p.first=x; p.second=y; return p; } int main(){ int N,K; cin>>N>>K; string S; cin>>S; string S2=S; S2+=S; pair<int,int> p1=calc(S,0); int p1_x=p1.first; int p1_y=p1.second; pair<int,int> p2=calc(S2,p1_x); int p2_x=p2.first; int p2_y=p2.second; if(p1_x>=p2_x){ int y_sum=0; if(N>K){ string S3=S.substr(0,K); int y_last=calc(S3,0).second; y_sum=y_last; } else if(N==K){ y_sum=p1_y; } else { y_sum+=p1_y; int loop_cnt=(K-N)/N; y_sum+=calc(S,p1_x).second*loop_cnt; int S_last_cnt=K%N; string S3=S.substr(0,S_last_cnt); int y_last=calc(S3,p1_x).second; y_sum+=y_last; } cout<<y_sum<<endl; } else { int y_sum=0; if(N>K){ string S3=S.substr(0,K); int y_last=calc(S3,0).second; y_sum=y_last; } else if(N==K){ y_sum=p1_y; } else { y_sum+=p1_y; int wx=p1_x,wy=p1_y; while(1){ int wx2=calc(S,wx).first; int wy2=calc(S,wx).second; if(wy2==wy) break; wx=wx2; wy=wy2; y_sum+=wy2; } } cout<<y_sum<<endl; } return 0; }