結果
問題 | No.1862 Copy and Paste |
ユーザー | rogi52 |
提出日時 | 2022-03-04 22:01:11 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 875 bytes |
コンパイル時間 | 1,965 ms |
コンパイル使用メモリ | 217,856 KB |
実行使用メモリ | 283,016 KB |
最終ジャッジ日時 | 2024-07-18 20:27:40 |
合計ジャッジ時間 | 6,769 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 21 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 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 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 135 ms
13,664 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | TLE | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i = 0; i < (n); i++) using namespace std; int main(){ cin.tie(0); ios::sync_with_stdio(0); using ll = int; ll A,B,N; cin >> A >> B >> N; using P = tuple<ll,ll,ll>; priority_queue<P,vector<P>,greater<P>> q; q.push({0, 1, 0}); map<pair<ll,ll>,ll> mp; mp[{1, 0}] = 0; ll ans = -1; while(!q.empty()) { auto [dist, s, t] = q.top(); q.pop(); if(dist != mp[{s, t}]) continue; if(s >= N) { ans = dist; break; } if(!mp.count({s, s}) || mp[{s, s}] > dist + A) { mp[{s, s}] = dist + A; q.push({dist + A, s, s}); } if(!mp.count({s + t, t}) || mp[{s + t, t}] > dist + B) { mp[{s + t, t}] = dist + B; q.push({dist + B, s + t, t}); } } cout << ans << endl; }