結果
問題 | No.4 おもりと天秤 |
ユーザー | highd |
提出日時 | 2016-09-07 16:17:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 836 bytes |
コンパイル時間 | 397 ms |
コンパイル使用メモリ | 55,032 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-04-27 17:05:42 |
合計ジャッジ時間 | 3,160 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | WA | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | WA | - |
testcase_22 | RE | - |
コンパイルメッセージ
main.cpp: In function ‘bool run(int*, int, int)’: main.cpp:25:1: warning: control reaches end of non-void function [-Wreturn-type] 25 | } | ^
ソースコード
#include <iostream> int sum=0; bool run(int*mess_list,int mess,int length){ std::cout<<mess<<std::endl; for(int i=0;i< length;i++){ if(mess+mess_list[i]<sum){ int*copy=new int[length-1]; for(int j=0;j<length;j++){ if(i>j){ copy[j]=mess_list[j]; }else if(i<j){ copy[j-1]=mess_list[j]; } } bool result=run(copy,mess+mess_list[i],length-1); delete[] copy; if(result==true){ return true; } } if(mess+mess_list[i]==sum){ return true; } } } int main(){ int n; std::cin>>n; int*mess_list=new int[n]; for(int i=0;i<n;i++){ std::cin>>mess_list[i]; } for(int i=0;i<n;i++){ sum+=mess_list[i]; } if(sum%2==1){ std::cout<<"impossible"<<std::endl; return 0; } sum/=2; std::cout<<(run(mess_list,0,n)?"possible":"impossible")<<std::endl; delete[] mess_list; return 0; }