結果
問題 | No.158 奇妙なお使い |
ユーザー | sugim48 |
提出日時 | 2015-02-26 23:45:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 38 ms / 5,000 ms |
コード長 | 1,601 bytes |
コンパイル時間 | 631 ms |
コンパイル使用メモリ | 85,904 KB |
実行使用メモリ | 13,184 KB |
最終ジャッジ日時 | 2024-06-28 22:20:53 |
合計ジャッジ時間 | 2,680 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
12,928 KB |
testcase_01 | AC | 36 ms
12,544 KB |
testcase_02 | AC | 38 ms
13,056 KB |
testcase_03 | AC | 38 ms
12,928 KB |
testcase_04 | AC | 36 ms
13,184 KB |
testcase_05 | AC | 35 ms
13,056 KB |
testcase_06 | AC | 36 ms
13,184 KB |
testcase_07 | AC | 36 ms
13,184 KB |
testcase_08 | AC | 31 ms
11,904 KB |
testcase_09 | AC | 37 ms
12,928 KB |
testcase_10 | AC | 36 ms
12,928 KB |
testcase_11 | AC | 37 ms
12,928 KB |
testcase_12 | AC | 38 ms
12,928 KB |
testcase_13 | AC | 38 ms
13,184 KB |
testcase_14 | AC | 38 ms
13,056 KB |
testcase_15 | AC | 38 ms
12,928 KB |
testcase_16 | AC | 37 ms
13,056 KB |
testcase_17 | AC | 38 ms
13,056 KB |
testcase_18 | AC | 37 ms
13,184 KB |
testcase_19 | AC | 37 ms
13,184 KB |
testcase_20 | AC | 37 ms
13,056 KB |
testcase_21 | AC | 34 ms
13,056 KB |
testcase_22 | AC | 34 ms
13,056 KB |
testcase_23 | AC | 37 ms
13,056 KB |
testcase_24 | AC | 37 ms
13,056 KB |
testcase_25 | AC | 27 ms
9,984 KB |
testcase_26 | AC | 36 ms
12,416 KB |
testcase_27 | AC | 33 ms
11,904 KB |
testcase_28 | AC | 36 ms
12,800 KB |
testcase_29 | AC | 27 ms
9,856 KB |
testcase_30 | AC | 33 ms
12,800 KB |
ソースコード
#define _USE_MATH_DEFINES #include <algorithm> #include <cstdio> #include <functional> #include <iostream> #include <cfloat> #include <climits> #include <cstring> #include <cmath> #include <fstream> #include <list> #include <map> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <time.h> #include <vector> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> i_i; typedef pair<ll, int> ll_i; typedef pair<double, int> d_i; typedef pair<ll, ll> ll_ll; typedef pair<double, double> d_d; struct edge { ll B, T, F, P; }; unsigned MOD = 1000000007; ll _MOD = 1000000009; double EPS = 1e-10; int UNKO = INT_MAX; int dp[11][101][10001]; int main() { int a4, a3, a1; cin >> a4 >> a3 >> a1; int Db; cin >> Db; int b4, b3, b1; cin >> b4 >> b3 >> b1; int Dc; cin >> Dc; int c4, c3, c1; cin >> c4 >> c3 >> c1; for (int y = 0; y <= 10000; y++) for (int i = 0; i <= 10; i++) for (int j = 0; j <= 100; j++) { int k = y - i * 1000 - j * 100; if (k < 0) continue; int& x = dp[i][j][k]; int _Db = Db; int B4 = min(i, _Db / 1000); _Db -= B4 * 1000; int B3 = min(j, _Db / 100); _Db -= B3 * 100; int B1 = min(k, _Db / 1); _Db -= B1 * 1; if (!_Db) x = max(x, dp[i - B4 + b4][j - B3 + b3][k - B1 + b1] + 1); int _Dc = Dc; int C4 = min(i, _Dc / 1000); _Dc -= C4 * 1000; int C3 = min(j, _Dc / 100); _Dc -= C3 * 100; int C1 = min(k, _Dc / 1); _Dc -= C1 * 1; if (!_Dc) x = max(x, dp[i - C4 + c4][j - C3 + c3][k - C1 + c1] + 1); } cout << dp[a4][a3][a1] << endl; }