結果
問題 | No.861 ケーキカット |
ユーザー | kotatsugame |
提出日時 | 2020-03-05 18:57:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,105 bytes |
コンパイル時間 | 739 ms |
コンパイル使用メモリ | 77,632 KB |
実行使用メモリ | 99,052 KB |
最終ジャッジ日時 | 2024-10-14 02:03:40 |
合計ジャッジ時間 | 5,615 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 196 ms
76,016 KB |
testcase_01 | AC | 155 ms
76,660 KB |
testcase_02 | AC | 141 ms
70,756 KB |
testcase_03 | AC | 418 ms
99,052 KB |
testcase_04 | AC | 132 ms
71,752 KB |
testcase_05 | AC | 173 ms
77,672 KB |
testcase_06 | AC | 174 ms
45,944 KB |
testcase_07 | AC | 98 ms
57,964 KB |
testcase_08 | AC | 110 ms
50,032 KB |
testcase_09 | AC | 111 ms
68,716 KB |
testcase_10 | AC | 101 ms
64,108 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 7 | main() | ^~~~
ソースコード
#include<iostream> #include<queue> #include<algorithm> using namespace std; long C[25]; long sum[1<<25]; main() { long all=0; for(int i=0;i<25;i++) { cin>>C[i]; all+=C[i]; } queue<int>P; long ans=all; for(int i=0;i<25;i++) { sum[1<<i]=C[i]; if(C[i]*2<=all) { P.push(1<<i); } else { ans=min(ans,C[i]*2-all); } } while(!P.empty()) { int u=P.front();P.pop(); ans=min(ans,all-sum[u]*2); for(int i=0;i<25;i++) { if(!(u>>i&1))continue; if(i>=5&&!(u>>i-5&1)) { int v=u|1<<i-5; long t=sum[u]+C[i-5]; if(!sum[v]&&2*t<=all) { sum[v]=t; P.push(v); } } if(i<20&&!(u>>i+5&1)) { int v=u|1<<i+5; long t=sum[u]+C[i+5]; if(!sum[v]&&2*t<=all) { sum[v]=t; P.push(v); } } if(i%5>0&&!(u>>i-1&1)) { int v=u|1<<i-1; long t=sum[u]+C[i-1]; if(!sum[v]&&2*t<=all) { sum[v]=t; P.push(v); } } if(i%5<4&&!(u>>i+1&1)) { int v=u|1<<i+1; long t=sum[u]+C[i+1]; if(!sum[v]&&2*t<=all) { sum[v]=t; P.push(v); } } } } cout<<ans<<endl; }