結果

問題 No.54 Happy Hallowe'en
ユーザー r_dream0r_dream0
提出日時 2017-03-01 21:19:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 307 ms / 5,000 ms
コード長 801 bytes
コンパイル時間 787 ms
コンパイル使用メモリ 78,540 KB
実行使用メモリ 393,756 KB
最終ジャッジ日時 2024-06-12 22:44:46
合計ジャッジ時間 3,226 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 58 ms
110,236 KB
testcase_05 AC 86 ms
159,520 KB
testcase_06 AC 118 ms
212,240 KB
testcase_07 AC 175 ms
278,248 KB
testcase_08 AC 234 ms
331,212 KB
testcase_09 AC 296 ms
393,756 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 307 ms
360,784 KB
testcase_13 AC 241 ms
393,276 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int dp[10001][10001];
int main() {
  vector<pair<int, pair<int,int>>> input;
  int N;
  cin >> N;
  input.resize(N);
  for(int i = 0; i < input.size(); i++) {
    cin >> input[i].second.second >> input[i].second.first;
    input[i].first = input[i].second.second + input[i].second.first;
  }
  sort(input.begin(), input.end());
  dp[0][0] = 1;
  int ans = 0;
  for(int i = 0; i < N; i++) {
    for(int j = 0; j <= 10000; j++) {
      if(dp[i][j]) {
        int next = j + input[i].second.second;
        if(j < input[i].second.first) {
          ans = max(ans, next);
          if(next <= 10000) {
            dp[i + 1][next] = 1;
          }
        }
        dp[i + 1][j] = 1;
      }
    }
  }
  cout << ans << endl;
}
0