結果
問題 | No.54 Happy Hallowe'en |
ユーザー | tnakao0123 |
提出日時 | 2016-03-04 16:11:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 224 ms / 5,000 ms |
コード長 | 1,252 bytes |
コンパイル時間 | 855 ms |
コンパイル使用メモリ | 87,820 KB |
実行使用メモリ | 98,048 KB |
最終ジャッジ日時 | 2024-10-15 17:14:41 |
合計ジャッジ時間 | 2,843 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 50 ms
26,880 KB |
testcase_05 | AC | 77 ms
39,296 KB |
testcase_06 | AC | 107 ms
52,224 KB |
testcase_07 | AC | 147 ms
68,992 KB |
testcase_08 | AC | 182 ms
82,304 KB |
testcase_09 | AC | 224 ms
98,048 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 193 ms
84,480 KB |
testcase_13 | AC | 215 ms
92,672 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 3 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 54.cc: No.54 Happy Hallowe'en - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int MAX_N = 10000; const int MAX_T = 10000; /* typedef */ struct VT { int v, t, sum; VT() {} VT(int _v, int _t): v(_v), t(_t) { sum = v + t; } bool operator<(const VT &vt) const { return sum < vt.sum; } }; /* global variables */ VT vts[MAX_N]; bool dp[MAX_N + 1][MAX_T]; /* subroutines */ /* main */ int main() { int n; cin >> n; for (int i = 0; i < n; i++) { int vi, ti; cin >> vi >> ti; vts[i] = VT(vi, ti); } sort(vts, vts + n); dp[0][0] = true; int ans = -1; for (int i = 0; i < n; i++) { int &vi = vts[i].v, &ti = vts[i].t; for (int j = 0; j < MAX_T; j++) if (dp[i][j]) { dp[i + 1][j] = true; if (j < ti) { int j0 = j + vi; if (ans < j0) ans = j0; if (j0 < MAX_T) dp[i + 1][j0] = true; } } } printf("%d\n", ans); return 0; }