結果
問題 | No.1862 Copy and Paste |
ユーザー | rogi52 |
提出日時 | 2022-03-04 22:14:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,016 bytes |
コンパイル時間 | 2,204 ms |
コンパイル使用メモリ | 213,464 KB |
実行使用メモリ | 273,156 KB |
最終ジャッジ日時 | 2024-07-18 20:45:42 |
合計ジャッジ時間 | 8,500 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 12 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 | 112 ms
13,128 KB |
testcase_10 | AC | 19 ms
5,480 KB |
testcase_11 | AC | 10 ms
5,376 KB |
testcase_12 | AC | 51 ms
8,484 KB |
testcase_13 | AC | 46 ms
8,052 KB |
testcase_14 | AC | 5 ms
5,376 KB |
testcase_15 | AC | 76 ms
10,144 KB |
testcase_16 | AC | 525 ms
30,580 KB |
testcase_17 | AC | 48 ms
7,976 KB |
testcase_18 | AC | 22 ms
5,616 KB |
testcase_19 | AC | 9 ms
5,376 KB |
testcase_20 | AC | 47 ms
8,052 KB |
testcase_21 | AC | 711 ms
43,380 KB |
testcase_22 | AC | 59 ms
8,740 KB |
testcase_23 | AC | 53 ms
8,232 KB |
testcase_24 | AC | 76 ms
10,152 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 75 ms
10,148 KB |
testcase_27 | AC | 10 ms
5,376 KB |
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; using ll = long long; const ll C = numeric_limits<int>::max(); inline ll f(int s, int t){ return s * C + t; } int main(){ cin.tie(0); ios::sync_with_stdio(0); using ll = long long; ll A,B,N; cin >> A >> B >> N; using P = pair<ll,ll>; priority_queue<P,vector<P>,greater<P>> q; q.push({0LL, f(1, 0)}); unordered_map<ll,ll> mp; mp[f(1, 0)] = 0; while(!q.empty()) { auto [dist, p] = q.top(); q.pop(); int s = (int)(p / C), t = p % C; if(dist != mp[f(s, t)]) continue; if(s >= N) { cout << dist << endl; return 0; } if(!mp.count(f(s, s)) || mp[f(s, s)] > dist + A) { mp[f(s, s)] = dist + A; q.push({dist + A, f(s, s)}); } if(!mp.count(f(s + t, t)) || mp[f(s + t, t)] > dist + B) { mp[f(s + t, t)] = dist + B; q.push({dist + B, f(s + t, t)}); } } }