結果

問題 No.4 おもりと天秤
ユーザー あっちむいてホイ!あっちむいてホイ!
提出日時 2021-10-30 00:58:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 954 bytes
コンパイル時間 1,101 ms
コンパイル使用メモリ 99,496 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-16 16:06:05
合計ジャッジ時間 3,019 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 RE -
testcase_06 AC 2 ms
5,376 KB
testcase_07 RE -
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 RE -
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 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <utility>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <functional>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
using namespace std;
using ll = long long int;
#define chmax(x,y)  (x) = ((x) > (y)) ? (x) : ((x) = (y));
#define chmin(x,y)  (x) = ((x) < (y)) ? (x) : ((x) = (y));
const int INF = 1e9;
const ll INFL = 1e18;
const int Mod = 1e9 + 7;
const int dx[] = {0,1,0,-1};
const int dy[] = {1,0,-1,0};


int main(int argc, char const *argv[])
{
  int N; cin >> N;
  vector<int> W(N); for(auto &a: W)cin >> a;
  vector<vector<int>> dp(N+1,vector<int>(1001));
  dp[0][0] = 1;
  for(int i=0;i<N;++i)
  {
    for(int j=0;j<1000;++j)
    {
      if(dp[i][j])
      {
        dp[i+1][j+W[i]] = 1;
        int x = abs(j - W[i]);
        dp[i+1][x] = 1;
      }
    }
  }
  if(dp[N][0])std::cout << "possible" << std::endl;
  else std::cout << "impossible" << std::endl;
}
0