結果
問題 | No.158 奇妙なお使い |
ユーザー | omu |
提出日時 | 2015-04-06 08:23:40 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 190 ms / 5,000 ms |
コード長 | 1,865 bytes |
コンパイル時間 | 704 ms |
コンパイル使用メモリ | 85,996 KB |
実行使用メモリ | 46,868 KB |
最終ジャッジ日時 | 2024-06-29 01:40:43 |
合計ジャッジ時間 | 2,869 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 18 ms
46,632 KB |
testcase_01 | AC | 21 ms
46,740 KB |
testcase_02 | AC | 17 ms
46,848 KB |
testcase_03 | AC | 18 ms
46,684 KB |
testcase_04 | AC | 184 ms
46,720 KB |
testcase_05 | AC | 18 ms
46,756 KB |
testcase_06 | AC | 17 ms
46,708 KB |
testcase_07 | AC | 17 ms
46,692 KB |
testcase_08 | AC | 17 ms
46,848 KB |
testcase_09 | AC | 17 ms
46,552 KB |
testcase_10 | AC | 20 ms
46,720 KB |
testcase_11 | AC | 19 ms
46,828 KB |
testcase_12 | AC | 19 ms
46,708 KB |
testcase_13 | AC | 18 ms
46,744 KB |
testcase_14 | AC | 18 ms
46,720 KB |
testcase_15 | AC | 21 ms
46,804 KB |
testcase_16 | AC | 22 ms
46,720 KB |
testcase_17 | AC | 32 ms
46,684 KB |
testcase_18 | AC | 43 ms
46,688 KB |
testcase_19 | AC | 19 ms
46,772 KB |
testcase_20 | AC | 25 ms
46,848 KB |
testcase_21 | AC | 190 ms
46,752 KB |
testcase_22 | AC | 187 ms
46,720 KB |
testcase_23 | AC | 19 ms
46,600 KB |
testcase_24 | AC | 16 ms
46,744 KB |
testcase_25 | AC | 17 ms
46,756 KB |
testcase_26 | AC | 19 ms
46,700 KB |
testcase_27 | AC | 18 ms
46,868 KB |
testcase_28 | AC | 19 ms
46,704 KB |
testcase_29 | AC | 20 ms
46,712 KB |
testcase_30 | AC | 26 ms
46,684 KB |
ソースコード
#include <cstdio> #include <iostream> #include <vector> #include <map> #include <set> #include <string> #include <cstring> #include <sstream> #include <algorithm> #include <functional> #include <queue> #include <stack> #include <cmath> #include <iomanip> using namespace std; inline int toInt(string s) { int v; istringstream sin(s); sin >> v; return v; } template<class T> inline string toString(T x) { ostringstream sout; sout << x; return sout.str(); } template<class T> inline T sqr(T x) { return x*x; } typedef pair<int, int> P; typedef long long ll; typedef unsigned long long ull; #define rep(i,n) for(int (i) = 0;(i) < (n);(i)++) #define clr(a) memset((a), 0 ,sizeof(a)) #define mclr(a) memset((a), -1 ,sizeof(a)) #define all(a) (a).begin(),(a).end() #define rall(a) (a).rbegin(), (a).rend() #define sz(a) (sizeof(a)) #define Fill(a,v) fill((int*)a,(int*)(a+(sz(a)/sz(*(a)))),v) bool cheak(int x, int y, int xMax, int yMax){ return x >= 0 && y >= 0 && xMax > x && yMax > y; } const int dx[4] = { -1, 0, 1, 0 }, dy[4] = { 0, 1, 0, -1 }; const int mod = 1000000007; const int INF = 2147483647; int dp[11][101][10001]; int main() { int a1000,a100,a1; int d[2]; int b1000[2],b100[2],b1[2]; cin >> a1000 >> a100 >> a1; rep(i, 2){ cin >> d[i]; cin >> b1000[i] >> b100[i] >> b1[i]; } Fill(dp,-(INF-1)); dp[a1000][a100][0] = a1; for (int k = 0;; k++){ bool end = 1; for (int i = 10;i >= 0;i--) for (int j = 100; j >= 0; j--){ rep(l, 2){ int u1000 = min(i,d[l] / 1000); int u100 = min(j,(d[l] - u1000 * 1000) / 100); int u1 = d[l] - u1000 * 1000 - u100 * 100; if (u1 > dp[i][j][k])continue; end = 0; dp[i - u1000 + b1000[l]][j - u100 + b100[l]][k + 1] = max(dp[i - u1000 + b1000[l]][j - u100 + b100[l]][k + 1],dp[i][j][k] - u1 + b1[l]); } } if (end){cout << k << endl;return 0;} } return 0; }