結果
問題 | No.710 チーム戦 |
ユーザー | shioya |
提出日時 | 2018-07-28 01:09:31 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,124 bytes |
コンパイル時間 | 416 ms |
コンパイル使用メモリ | 55,000 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-05 18:07:53 |
合計ジャッジ時間 | 4,933 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
8,320 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
//No.710 チーム戦 #include<iostream> using namespace std; void update_fl(bool *_flag,int _N){ for(int i=0;i<=_N;i++){ if(_flag[i]==false){ _flag[i]=true; break; }else{ _flag[i]=false; continue; } } } bool chk_flag(bool *_flag,int _N){ if(_flag[_N]==true)return false; else return true; } int main() { int N; cin>>N; int *A,*B; bool *flag = new bool[N+1]; for(int i=0;i<N;i++)flag[i]=false; A=new int[N]; B=new int[N]; int sec=3000000; for(int i=0;i<N;i++){ cin>>A[i]; cin>>B[i]; } int tmp_sec=0; int tmp_a,tmp_b; tmp_a=tmp_b=0; while(chk_flag(flag,N)){ tmp_sec=0; for(int i=0;i<N;i++){ if(flag[i])tmp_a+=A[i]; else tmp_b+=B[i]; } if(tmp_b>tmp_a)tmp_sec=tmp_b; else tmp_sec=tmp_a; if(tmp_sec<sec)sec=tmp_sec; update_fl(flag,N); //for(int i=0;i<=N;i++)cout<<" "<<flag[i]<<" "; //cout<<tmp_sec<<endl; tmp_a=tmp_b=0; } cout<<sec<<endl; return 0; }