結果

問題 No.54 Happy Hallowe'en
ユーザー a5uaa5ua
提出日時 2014-11-05 00:08:39
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 560 bytes
コンパイル時間 656 ms
コンパイル使用メモリ 67,172 KB
実行使用メモリ 15,552 KB
最終ジャッジ日時 2024-06-09 19:05:26
合計ジャッジ時間 2,468 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
15,388 KB
testcase_01 AC 4 ms
15,440 KB
testcase_02 AC 5 ms
15,372 KB
testcase_03 AC 5 ms
15,388 KB
testcase_04 AC 28 ms
15,528 KB
testcase_05 AC 49 ms
15,304 KB
testcase_06 AC 68 ms
15,304 KB
testcase_07 AC 102 ms
15,296 KB
testcase_08 AC 132 ms
15,464 KB
testcase_09 AC 173 ms
15,536 KB
testcase_10 AC 5 ms
15,388 KB
testcase_11 AC 4 ms
15,236 KB
testcase_12 AC 172 ms
15,344 KB
testcase_13 AC 173 ms
15,444 KB
testcase_14 AC 5 ms
15,300 KB
testcase_15 AC 5 ms
15,376 KB
testcase_16 WA -
testcase_17 AC 5 ms
15,304 KB
testcase_18 AC 4 ms
15,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

int main()
{
	int N;
	cin >> N;
	vector<bool> dp(10000 * 10000 + 1, false);
	vector<pair<int, int>> v(N);
	for (int n = 0; n < N; ++n) {
		cin >> v[n].first >> v[n].second;
	}
	sort(v.begin(), v.end());
	dp[0] = true;

	int ans = 0;
	for (int n = 0; n < N; ++n) {
		int V = v[n].first;
		int T = v[n].second;
		for (int i = T - 1; i >= 0; --i) {
			if (dp[i]) {
				dp[i + V] = true;
				ans = max(ans, i + V);
			}
		}
	}
	cout << ans << endl;
}
0