結果
問題 | No.1862 Copy and Paste |
ユーザー | Bryson Ng |
提出日時 | 2024-05-01 23:31:31 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 730 bytes |
コンパイル時間 | 3,069 ms |
コンパイル使用メモリ | 277,820 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-05-01 23:31:41 |
合計ジャッジ時間 | 6,602 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; void solve(){ } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); // iad int a, b, n; cin >> a >> b >> n; if (n == 1) { cout << 0 << endl; return 0; } // temp answer int ans = a + (n - 1) * b; for (int use_1 = 2; (1 << (use_1 - 1)) <= n; use_1++) { priority_queue<int, vector<int>, greater<int>> pq; int duck = 1; int use_2 = use_1; for (int i = 1; i <= use_1; i++) duck *= 2; for (int i = 1; i <= use_1; i++) pq.push(2); while (duck < n) { int cur = pq.top(); pq.pop(); duck *= cur + 1; duck /= cur; use_2 += 1; pq.push(cur + 1); } ans = min(ans, a * use_1 + b * use_2); } cout << ans << endl; return 0; }