結果

問題 No.1862 Copy and Paste
ユーザー rogi52rogi52
提出日時 2022-03-04 21:57:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 877 bytes
コンパイル時間 2,347 ms
コンパイル使用メモリ 218,740 KB
実行使用メモリ 277,220 KB
最終ジャッジ日時 2024-07-18 20:20:19
合計ジャッジ時間 10,128 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 25 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 2 ms
5,376 KB
testcase_09 AC 260 ms
17,360 KB
testcase_10 AC 40 ms
6,272 KB
testcase_11 AC 18 ms
5,376 KB
testcase_12 AC 121 ms
10,780 KB
testcase_13 AC 104 ms
9,864 KB
testcase_14 AC 9 ms
5,376 KB
testcase_15 AC 183 ms
14,304 KB
testcase_16 AC 1,018 ms
46,432 KB
testcase_17 AC 108 ms
10,072 KB
testcase_18 AC 47 ms
6,656 KB
testcase_19 AC 18 ms
5,376 KB
testcase_20 AC 105 ms
9,884 KB
testcase_21 AC 1,090 ms
49,440 KB
testcase_22 AC 137 ms
11,384 KB
testcase_23 AC 120 ms
10,752 KB
testcase_24 AC 159 ms
13,912 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 162 ms
13,912 KB
testcase_27 AC 18 ms
5,376 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);

    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;
}
0