結果

問題 No.4 おもりと天秤
ユーザー BantakoBantako
提出日時 2017-07-12 21:25:45
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 5 ms / 5,000 ms
コード長 496 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 26,440 KB
実行使用メモリ 5,328 KB
最終ジャッジ日時 2023-09-08 17:32:17
合計ジャッジ時間 1,132 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 4 ms
4,388 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 3 ms
4,420 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 5 ms
5,328 KB
testcase_10 AC 4 ms
4,564 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 3 ms
4,380 KB
testcase_19 AC 3 ms
4,376 KB
testcase_20 AC 3 ms
4,380 KB
testcase_21 AC 3 ms
4,380 KB
testcase_22 AC 4 ms
4,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:6: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
 main(){
      ^

ソースコード

diff #

#include<stdio.h>
int N;
int W[100];
int dp[101][10001];
int search(int i,int w);
main(){
    scanf("%d",&N);
    int sum = 0;
    for(int i = 0;i < N;i++){
        scanf("%d",&W[i]);
        sum += W[i];
    }
    dp[0][0] = 1;
    for(int i = 1;i <= N;i++){
        for(int j = 0;j < sum+1;j++){
            if(dp[i-1][j]){
                dp[i][j]++;
                dp[i][j+W[i-1]]++;
            }
        }
    }
    printf("%s\n",sum%2?"impossible":dp[N][sum/2]?"possible":"impossible");
}
0