結果

問題 No.158 奇妙なお使い
ユーザー kurenai3110kurenai3110
提出日時 2016-11-15 17:32:50
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,462 bytes
コンパイル時間 514 ms
コンパイル使用メモリ 69,156 KB
実行使用メモリ 55,528 KB
最終ジャッジ日時 2024-05-04 13:56:01
合計ジャッジ時間 7,255 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 278 ms
5,376 KB
testcase_02 AC 6 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <queue>
using namespace std;

struct MONEY{
	int c1000, c100, c1,cnt;
};

int main()
{
	vector<int>A(3);
	cin >> A[0] >> A[1] >> A[2];
	int Db; cin >> Db;
	vector<int>B(3);
	cin >> B[0] >> B[1] >> B[2];
	int Dc; cin >> Dc;
	vector<int>C(3);
	cin >> C[0] >> C[1] >> C[2];

	queue<MONEY> que;
	que.push({ A[0], A[1], A[2] , 0 });

	int maxCnt = 0;
	while (!que.empty()){
		int b = Db, c = Dc;
		MONEY Co = que.front(); que.pop();
		maxCnt = max(maxCnt, Co.cnt);

		int c1000 = Co.c1000, c100 = Co.c100, c1 = Co.c1;
		for (int i = c1000; i > 0; i--){
			if (b >= 1000 * i){
				b -= 1000 * i;
				c1000 -= i;
				break;
			}
		}
		for (int i = c100; i > 0; i--){
			if (b >= 100 * i){
				b -= 100 * i;
				c100 -= i;
				break;
			}
		}
		for (int i = c1; i > 0; i--){
			if (b >= 1 * i){
				b -= 1 * i;
				c1 -= i;
				break;
			}
		}
		if (b == 0) que.push({ c1000+B[0], c100+B[1], c1+B[2] , Co.cnt+1 });

		c1000 = Co.c1000, c100 = Co.c100, c1 = Co.c1;
		for (int i = c1000; i > 0; i--){
			if (c >= 1000 * i){
				c -= 1000 * i;
				c1000 -= i;
				break;
			}
		}
		for (int i = c100; i > 0; i--){
			if (c >= 100 * i){
				c -= 100 * i;
				c100 -= i;
				break;
			}
		}
		for (int i = c1; i > 0; i--){
			if (c >= 1 * i){
				c -= 1 * i;
				c1 -= i;
				break;
			}
		}
		if (c == 0) que.push({ c1000 + C[0], c100+C[1], c1+C[2] , Co.cnt+1 });
	}

	cout << maxCnt << endl;

	return 0;
}
0