結果

問題 No.2099 [Cherry Alpha B] Time Machine
ユーザー nyyanyya
提出日時 2022-12-23 23:10:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,182 bytes
コンパイル時間 4,163 ms
コンパイル使用メモリ 242,132 KB
実行使用メモリ 439,544 KB
最終ジャッジ日時 2024-11-18 04:43:28
合計ジャッジ時間 181,194 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
118,308 KB
testcase_02 AC 14 ms
13,636 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 2 ms
13,640 KB
testcase_57 AC 2 ms
75,684 KB
testcase_58 AC 2 ms
13,640 KB
testcase_59 AC 2 ms
72,868 KB
testcase_60 AC 2 ms
13,636 KB
testcase_61 AC 2 ms
75,040 KB
testcase_62 AC 2 ms
13,636 KB
testcase_63 AC 2 ms
79,272 KB
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 AC 2 ms
6,820 KB
testcase_69 AC 3 ms
6,816 KB
testcase_70 AC 3 ms
6,816 KB
testcase_71 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:30:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   30 |         auto [cost,now]=q.top();
      |              ^

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i=0;i<(n);i++)
#define per(i,n) for(int i=(n)-1;i>=0;i--)
#define all(x) x.begin(),x.end()
typedef long long ll;
//using mint = modint;
using mint = modint998244353;
//using mint = modint1000000007;
using P = pair<int, int>;

const ll INF=1LL<<60, dx[]={0,1,0,-1},dy[]={1,0,-1,0};
template <typename T> inline bool chmin(T& a,const T&b) {if(a>b){a=b; return 1;} return 0;}
template <typename T> inline bool chmax(T& a,const T&b) {if(a<b){a=b; return 1;} return 0;}

int main(){

    ll T,X,A,Y,B;
    cin >> T;
    cin >> X >> A;
    cin >> Y >> B;
    
    map<ll,ll> mp;
    priority_queue<pair<ll,ll>,vector<pair<ll,ll>>, greater<pair<ll,ll>>> q;
    q.push({1ll,0ll});

    while(!mp[T]) {
        auto [cost,now]=q.top();
        q.pop();

        //cout << "##" << cost << " " << now << endl;
        if(!mp[now]) {
            mp[now]=cost;
            if(!mp[now+1]) q.push({cost+1,now+1});
            if(!mp[now+A]) q.push({cost+X,now+A});
            if(!mp[now-B]) q.push({cost+Y,now-B});
        }
    }
    cout << mp[T]-1 << endl;

    return 0;

}
0