結果
問題 | No.4 おもりと天秤 |
ユーザー | amtgjw |
提出日時 | 2018-05-04 23:32:45 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,203 bytes |
コンパイル時間 | 883 ms |
コンパイル使用メモリ | 67,772 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 01:25:20 |
合計ジャッジ時間 | 1,506 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <numeric> #include <map> using namespace std; #define INF 2000000007 #define MOD 1000003 #define MAX 105 #define REP(i,n) for(int i=0;i<(n);++i) #define REPS(i,s,t) for(int i=(s);i<(t);++i) typedef unsigned int uint; typedef unsigned long long int ull; vector<int> prime(int N){ int cnt = 1; vector<int> pn(N+1); REPS(i,N,1) pn[i]=i; for(int i=4;i<N;i+=2) pn[i] = -1; for(int i=3;i<N;i+=2){ if (pn[i]==-1) continue; for(int j=i*2;j<=N;j+=i) pn[j]= -1; ++cnt; } // 整頓 vector<int> p(cnt); for(int i=0,j=2;j<N;++j){ if(pn[j]!=-1)p[i++]=j; } return p; } int index(vector<int> &array,int num){ for(int i=0;i<array.size();++i){ if(array[i]==num)return i; } return -1; } bool DP[105][10010]; int main(){ int N;cin>>N; vector<int> W(N+2); REPS(i,1,N+1) cin>>W[i]; int suml = accumulate(W.begin(),W.end(),0); if(suml%2==1){ cout << "impossible\n"; return 0; } suml /= 2; REPS(i,1,N+1)DP[i][0]=true; for(int i=1;i<=N;++i){ for(int j=W[i];j<=suml;++j){ DP[i][j] |= DP[i-1][j-W[i]]; } } cout << (DP[N][suml] ? "possible\n" : "impossible\n"); return 0; }