結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | Pachicobue |
提出日時 | 2017-03-14 04:39:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,922 bytes |
コンパイル時間 | 580 ms |
コンパイル使用メモリ | 67,248 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-30 00:42:44 |
合計ジャッジ時間 | 2,992 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | WA | - |
ソースコード
#include <cassert> #include <iostream> #include <vector> #include <algorithm> #include <utility> #include <queue> #define FOR(i, a, b) for (int i = (a); i < (b); i++) #define RFOR(i, a, b) for (int i = (b)-1; i >= (a); i--) #define rep(i, n) for (int i = 0; i < (n); i++) #define rep1(i, n) for (int i = 1; i <= (n); i++) #define rrep(i, n) for (int i = (n)-1; i >= 0; i--) #define pb push_back #define mp make_pair #define fst first #define snd second #define show(x) cout << #x << " = " << x << endl #define chmin(x, y) x = min(x, y) #define chmax(x, y) x = max(x, y) #define pii pair<int, int> #define vi vector<int> using namespace std; template <class S, class T> ostream& operator<<(ostream& o, const pair<S, T>& p) { return o << "(" << p.first << "," << p.second << ")"; } template <class T> ostream& operator<<(ostream& o, const vector<T>& vc) { o << "sz = " << vc.size() << endl << "["; for (const T& v : vc) o << v << ","; o << "]"; return o; } typedef long long ll; #define MAX 150 int N; int A[MAX]; int L[MAX]; priority_queue<pii, vector<pii>, greater<pii>> q; void battle(int op) { pii pc = q.top(); q.pop(); q.push(mp(pc.first + L[op], pc.second + 1)); } int ans(int start) { rep(i, N) { q.push(mp(A[i], 0)); } int end = start; while (true) { battle(start); start++; if (start == N) { start = 0; } if (end == start) { break; } } int maxc = 0; while (not q.empty()) { const pii p = q.top(); q.pop(); chmax(maxc, p.snd); } return maxc; } int main() { cin >> N; rep(i, N) { cin >> A[i]; } rep(i, N) { int b; cin >> b; L[i] = b / 2; } int minc = N + 1; rep(i, N) { chmin(minc, ans(i)); } cout << minc << endl; return 0; }