結果

問題 No.158 奇妙なお使い
ユーザー omuomu
提出日時 2015-04-06 07:45:01
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,829 bytes
コンパイル時間 659 ms
コンパイル使用メモリ 85,952 KB
実行使用メモリ 47,044 KB
最終ジャッジ日時 2023-09-17 06:05:51
合計ジャッジ時間 3,236 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 21 ms
47,044 KB
testcase_02 WA -
testcase_03 AC 17 ms
46,776 KB
testcase_04 AC 207 ms
46,720 KB
testcase_05 AC 16 ms
46,728 KB
testcase_06 AC 16 ms
46,728 KB
testcase_07 AC 17 ms
46,776 KB
testcase_08 AC 17 ms
46,748 KB
testcase_09 WA -
testcase_10 AC 17 ms
47,044 KB
testcase_11 WA -
testcase_12 AC 16 ms
46,780 KB
testcase_13 AC 17 ms
46,864 KB
testcase_14 WA -
testcase_15 AC 20 ms
46,756 KB
testcase_16 AC 20 ms
46,824 KB
testcase_17 AC 34 ms
46,964 KB
testcase_18 AC 46 ms
46,768 KB
testcase_19 AC 19 ms
46,712 KB
testcase_20 WA -
testcase_21 AC 210 ms
46,784 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 17 ms
47,012 KB
testcase_26 AC 19 ms
46,764 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 19 ms
46,704 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = (d[l]/1000);
				if (u1000 > i)u1000 = i;
				int u100 = (d[l]-u1000*1000)/100;
				if (u100 > j)u100 = j;
				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] = dp[i][j][k] - u1 + b1[l];
			}
		
		if (end){cout << k << endl;return 0;}
	}


	return 0;
}
0