結果
| 問題 |
No.3065 Speedrun (Normal)
|
| コンテスト | |
| ユーザー |
k82b
|
| 提出日時 | 2025-03-21 21:24:11 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 1,110 bytes |
| コンパイル時間 | 2,207 ms |
| コンパイル使用メモリ | 199,084 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2025-03-21 21:24:14 |
| 合計ジャッジ時間 | 2,864 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 |
ソースコード
#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)
void solve(){
Int A, B, C, D;
cin >> A >> B >> C >> D;
Int P, Q, R, S, T;
cin >> P >> Q >> R >> S >> T;
vector<pair<Int, Int>> X;
X.push_back({P, A});
X.push_back({Q, B});
X.push_back({R, C});
X.push_back({S, D});
sort(X.begin(), X.end());
Int ans = 0;
REP(i, X.size()){
if (X[i].first * X[i].second <= T){
T -= X[i].first * X[i].second;
ans += X[i].second;
} else {
ans += T / X[i].first;
T = 0;
}
}
cout << ans << '\n';
}
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
int t = 1;
// cin >> t;
while (t--){
solve();
}
}
k82b