結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | Yang33 |
提出日時 | 2018-04-07 01:12:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 318 ms / 5,000 ms |
コード長 | 3,343 bytes |
コンパイル時間 | 1,729 ms |
コンパイル使用メモリ | 174,112 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-26 10:53:17 |
合計ジャッジ時間 | 5,164 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 318 ms
5,376 KB |
testcase_03 | AC | 249 ms
5,376 KB |
testcase_04 | AC | 132 ms
5,376 KB |
testcase_05 | AC | 88 ms
5,376 KB |
testcase_06 | AC | 31 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 41 ms
5,376 KB |
testcase_09 | AC | 314 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 247 ms
5,376 KB |
testcase_12 | AC | 230 ms
5,376 KB |
testcase_13 | AC | 218 ms
5,376 KB |
testcase_14 | AC | 316 ms
5,376 KB |
testcase_15 | AC | 283 ms
5,376 KB |
testcase_16 | AC | 6 ms
5,376 KB |
testcase_17 | AC | 180 ms
5,376 KB |
testcase_18 | AC | 151 ms
5,376 KB |
testcase_19 | AC | 4 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using VS = vector<string>; using LL = long long; using VI = vector<int>; using VVI = vector<VI>; using PII = pair<int, int>; using PLL = pair<LL, LL>; using VL = vector<LL>; using VVL = vector<VL>; #define ALL(a) begin((a)),end((a)) #define RALL(a) (a).rbegin(), (a).rend() #define PB push_back #define EB emplace_back #define MP make_pair #define SZ(a) int((a).size()) #define SORT(c) sort(ALL((c))) #define RSORT(c) sort(RALL((c))) #define UNIQ(c) (c).erase(unique(ALL((c))), end((c))) #define FOR(i, s, e) for (int(i) = (s); (i) < (e); (i)++) #define FORR(i, s, e) for (int(i) = (s); (i) > (e); (i)--) #define debug(x) cerr << #x << ": " << x << endl const int INF = 1e9; const LL LINF = 1e16; const LL MOD = 1000000007; const double PI = acos(-1.0); int DX[8] = { 0, 0, 1, -1, 1, 1, -1, -1 }; int DY[8] = { 1, -1, 0, 0, 1, -1, 1, -1 }; /* ----- 2018/04/06 Problem: yukicoder 009 / Link: http://yukicoder.me/problems/no/009 ----- */ /* ------問題------ HeliaはRPGゲームをしている。そのRPGゲームは味方のモンスターのレベル上げていきゲームを進めるゲームである。 Heliaは手持ちにN匹のモンスターのパーティーがいてレベル上げしたいと思っている。 レベル上げは、敵のモンスターと1対1で戦い、敵のレベルの半分小数切り捨てを獲得できる。(自分の戦ったモンスターのレベルに加算する) 例えば、自分のモンスターのレベルが1で相手のモンスターのレベルが5の時、 戦ったあと、自分のモンスターのレベルは3になる。 戦いに関してはアイテムを駆使してでも勝つため、レベル差に関係なく勝てるとする。 ここで、敵のモンスターが円状に時計回りに並んでいて、最初に戦うモンスターを決めると時計回りの順番に全員と一度だけ戦うことができる狩場がある。 (最初に戦えるモンスターは自由に選べる) Heliaは、自分の手持ちのモンスターの中から、1戦毎、その時に一番レベルが低い、複数いる場合は、一番戦いをしてないモンスターを戦わせるとする。 この狩場のモンスターを全て倒すとして、手持ちのパーティー中で戦闘回数が一番多い回数がもっとも低くなるよう狩場で最初に戦うモンスターを選んだとき、その中で一番戦闘回数が多い数を求めてください。 注意:速い言語でないと時間的に厳しいかもしれません。 -----問題ここまで----- */ /* -----解説等----- yukicoderははやい ----解説ここまで---- */ LL N; LL ans = 0LL; int main() { cin.tie(0); ios_base::sync_with_stdio(false); cin >> N; VL a(N), b(N); FOR(i, 0, N) { cin >> a[i]; } FOR(i, 0, N) { cin >> b[i]; } ans = INF; FOR(s, 0, N) { priority_queue<PLL, vector<PLL>, greater<PLL>>pq; FOR(i, 0, N) { pq.push(PLL(a[i], 0)); } LL ret = 0; FOR(i, 0, N) { int id = (i + s) % N; PLL mine = pq.top(); pq.pop(); pq.push(PLL(mine.first+b[id]/2 , mine.second+1)); ret = max(ret, mine.second + 1); } ans = min(ret, ans); } cout << ans << "\n"; return 0; }