結果

問題 No.3068 Speedrun (Hard)
ユーザー k82b
提出日時 2025-03-21 23:01:48
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 357 ms / 2,000 ms
コード長 1,335 bytes
コンパイル時間 2,514 ms
コンパイル使用メモリ 192,964 KB
実行使用メモリ 135,296 KB
最終ジャッジ日時 2025-03-21 23:01:55
合計ジャッジ時間 6,218 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using Int = long long;
template <class T> inline bool setmin(T &A, T B){
	if (A > B){
		A = B;
		return true;
	} else {
		return false;
	}
}
template <class T> inline bool setmax(T &A, T B){
	if (A < B){
		A = B;
		return true;
	} else {
		return false;
	}
}
#define REP(x, y) for (int x = 0; x < int(y); ++x)
#define rep(x, y, z) for (int x = int(y); x < int(z); ++x)
#define PER(x, y) for (int x = int(y) - 1; x >= 0; --x)
#define per(x, y, z) for (int x = int(z) - 1; x >= int(y); --x)

short ff[200200200];

void solve(){
	int A, B, C, D, N;
	cin >> A >> B >> C >> D >> N;
	int P, Q, R, S, T;
	cin >> P >> Q >> R >> S >> T;
	REP(i, min(N + 1, A + B + 1)){
		if (N - i <= C + D){
			REP(j, min(i + 1, A + 1)){
				if (i - j <= B){
					int x = P * j + Q * (i - j);
					ff[x] = j + 1;
				}
			}
			REP(j, min(N - i + 1, C + 1)){
				if (N - i - j <= D){
					int x = T - R * j - S * (N - i - j);
					if (x >= 0 && ff[x]){
						cout << ff[x] - 1 << ' ' << i - (ff[x] - 1) << ' ' << j << ' ' << N - i - j << '\n';
						return;
					}
				}
			}
			REP(j, min(i + 1, A + 1)){
				if (i - j <= B){
					int x = P * j + Q * (i - j);
					ff[x] = 0;
				}
			}
		}
	}
}

int main(){
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int t = 1;
	// cin >> t;
	while (t--){
		solve();
	}
}
0