結果

問題 No.158 奇妙なお使い
ユーザー omuomu
提出日時 2015-04-06 08:23:40
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 1,865 bytes
コンパイル時間 925 ms
コンパイル使用メモリ 85,444 KB
実行使用メモリ 47,036 KB
最終ジャッジ日時 2023-09-11 10:58:15
合計ジャッジ時間 3,039 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
46,740 KB
testcase_01 AC 19 ms
46,744 KB
testcase_02 AC 17 ms
46,956 KB
testcase_03 AC 17 ms
46,728 KB
testcase_04 AC 161 ms
46,832 KB
testcase_05 AC 16 ms
47,036 KB
testcase_06 AC 17 ms
46,740 KB
testcase_07 AC 16 ms
47,028 KB
testcase_08 AC 16 ms
46,920 KB
testcase_09 AC 16 ms
46,808 KB
testcase_10 AC 18 ms
46,916 KB
testcase_11 AC 17 ms
46,768 KB
testcase_12 AC 17 ms
46,768 KB
testcase_13 AC 16 ms
46,956 KB
testcase_14 AC 16 ms
46,924 KB
testcase_15 AC 18 ms
46,756 KB
testcase_16 AC 19 ms
46,808 KB
testcase_17 AC 29 ms
46,720 KB
testcase_18 AC 39 ms
46,796 KB
testcase_19 AC 18 ms
46,792 KB
testcase_20 AC 23 ms
46,796 KB
testcase_21 AC 161 ms
46,728 KB
testcase_22 AC 161 ms
46,752 KB
testcase_23 AC 17 ms
46,724 KB
testcase_24 AC 17 ms
46,732 KB
testcase_25 AC 17 ms
46,732 KB
testcase_26 AC 18 ms
46,760 KB
testcase_27 AC 16 ms
46,764 KB
testcase_28 AC 17 ms
46,852 KB
testcase_29 AC 18 ms
46,752 KB
testcase_30 AC 25 ms
46,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0