結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | tarakojo1019 |
提出日時 | 2021-01-18 17:25:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 507 ms / 5,000 ms |
コード長 | 1,511 bytes |
コンパイル時間 | 1,247 ms |
コンパイル使用メモリ | 121,844 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-08 06:27:46 |
合計ジャッジ時間 | 6,689 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 507 ms
6,944 KB |
testcase_03 | AC | 402 ms
6,940 KB |
testcase_04 | AC | 213 ms
6,940 KB |
testcase_05 | AC | 138 ms
6,944 KB |
testcase_06 | AC | 48 ms
6,944 KB |
testcase_07 | AC | 3 ms
6,940 KB |
testcase_08 | AC | 65 ms
6,944 KB |
testcase_09 | AC | 492 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 404 ms
6,944 KB |
testcase_12 | AC | 330 ms
6,944 KB |
testcase_13 | AC | 268 ms
6,944 KB |
testcase_14 | AC | 495 ms
6,944 KB |
testcase_15 | AC | 446 ms
6,940 KB |
testcase_16 | AC | 8 ms
6,940 KB |
testcase_17 | AC | 287 ms
6,940 KB |
testcase_18 | AC | 244 ms
6,940 KB |
testcase_19 | AC | 6 ms
6,940 KB |
ソースコード
#include<iostream> #include<math.h> #include<algorithm> #include<stdint.h> #include<vector> #include<deque> #include<stack> #include<functional> #include<string> #include<numeric> #include<cstring> #include<random> #include<array> #include<fstream> #include<iomanip> #include<list> #include<set> #include<map> #include<unordered_map> #include<unordered_set> #include<bitset> #include<queue> /* #include<boost/multiprecision/cpp_int.hpp> using namespace boost::multiprecision; */ using namespace std; using ll = long long; using ull = unsigned long long; #define REP(i,a,b) for(ll i = a; i < b; ++i) #define PRI(s) std::cout << s << endl #define PRIF(v, n) printf("%."#n"f\n", (double)v) template<typename A, typename B>void mins(A& a, const B& b) { a = min(a, (A)b); }; template<typename A, typename B>void maxs(A& a, const B& b) { a = max(a, (A)b); }; int main() { ll N; cin >> N; vector<ll> A(N); REP(i, 0, N) cin >> A[i]; vector<ll> B(N); REP(i, 0, N) cin >> B[i]; ll ans = 1e18; REP(s, 0, N) { auto cmp = [](auto a, auto b) { if (a.first == b.first) return a.second > b.second; return a.first > b.first; }; priority_queue<pair<ll, ll>, vector< pair<ll, ll>>, decltype(cmp)> q{ cmp }; REP(i, 0, N) q.push({ A[i], 0 }); REP(i, 0, N) { ll ind = (i + s) % N; auto p = q.top(); q.pop(); p.first += B[ind] / 2; p.second++; q.push(p); } ll tmp = 0; while (!q.empty()) maxs(tmp, q.top().second), q.pop(); mins(ans, tmp); } PRI(ans); return 0; }