結果
問題 | No.27 板の準備 |
ユーザー | ciel |
提出日時 | 2015-07-14 16:29:43 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 495 bytes |
コンパイル時間 | 326 ms |
コンパイル使用メモリ | 36,352 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-08 07:13:24 |
合計ジャッジ時間 | 962 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:6:34: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 6 | for(int i=0;i<4;i++)scanf("%d",&V[i]),T+=V[i]; | ~~~~~^~~~~~~~~~~~
ソースコード
#include <vector> #include <cstdio> int main(){ std::vector<int>V(4),X(3); int T=0,R; for(int i=0;i<4;i++)scanf("%d",&V[i]),T+=V[i]; R=T; for(X[0]=1;X[0]<=30;X[0]++)for(X[1]=X[0]+1;X[1]<=30;X[1]++)for(X[2]=X[1]+1;X[2]<=30;X[2]++){ std::vector<int>bag(T+1); bag[0]=1; for(int i=0;i<3;i++)for(int j=X[i];j<=T;j++)if(bag[j-X[i]]&&(!bag[j]||bag[j]>bag[j-X[i]]))bag[j]=bag[j-X[i]]+1; int i=0,r=0; for(;i<4;r+=bag[V[i++]])if(!bag[V[i]])break; if(i==4&&R>r)R=r; } printf("%d\n",R); }