結果

問題 No.2099 [Cherry Alpha B] Time Machine
ユーザー Shun_PIShun_PI
提出日時 2022-10-15 00:51:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,535 bytes
コンパイル時間 2,469 ms
コンパイル使用メモリ 190,152 KB
実行使用メモリ 628,052 KB
最終ジャッジ日時 2024-06-26 18:48:12
合計ジャッジ時間 34,569 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
322,624 KB
testcase_01 AC 93 ms
315,616 KB
testcase_02 AC 96 ms
315,576 KB
testcase_03 AC 982 ms
315,716 KB
testcase_04 AC 1,725 ms
315,816 KB
testcase_05 AC 81 ms
315,676 KB
testcase_06 AC 911 ms
315,708 KB
testcase_07 AC 922 ms
315,672 KB
testcase_08 AC 120 ms
321,264 KB
testcase_09 AC 111 ms
319,688 KB
testcase_10 AC 180 ms
328,124 KB
testcase_11 AC 191 ms
328,588 KB
testcase_12 AC 120 ms
317,856 KB
testcase_13 AC 922 ms
315,732 KB
testcase_14 AC 1,724 ms
315,840 KB
testcase_15 AC 82 ms
315,680 KB
testcase_16 AC 922 ms
315,704 KB
testcase_17 AC 962 ms
315,548 KB
testcase_18 AC 288 ms
329,672 KB
testcase_19 AC 336 ms
320,424 KB
testcase_20 AC 217 ms
326,740 KB
testcase_21 AC 114 ms
319,908 KB
testcase_22 AC 108 ms
318,860 KB
testcase_23 AC 120 ms
320,520 KB
testcase_24 AC 438 ms
320,284 KB
testcase_25 AC 113 ms
319,752 KB
testcase_26 AC 124 ms
320,908 KB
testcase_27 AC 96 ms
317,532 KB
testcase_28 AC 930 ms
315,724 KB
testcase_29 AC 1,790 ms
315,716 KB
testcase_30 AC 84 ms
315,792 KB
testcase_31 AC 927 ms
315,784 KB
testcase_32 AC 933 ms
315,684 KB
testcase_33 AC 912 ms
315,744 KB
testcase_34 AC 1,725 ms
315,712 KB
testcase_35 AC 84 ms
315,716 KB
testcase_36 AC 944 ms
315,748 KB
testcase_37 AC 937 ms
315,552 KB
testcase_38 AC 135 ms
321,208 KB
testcase_39 AC 151 ms
321,776 KB
testcase_40 AC 135 ms
322,404 KB
testcase_41 AC 153 ms
321,212 KB
testcase_42 AC 153 ms
324,412 KB
testcase_43 AC 107 ms
319,076 KB
testcase_44 AC 90 ms
316,764 KB
testcase_45 AC 186 ms
323,404 KB
testcase_46 AC 144 ms
322,776 KB
testcase_47 AC 134 ms
319,256 KB
testcase_48 AC 941 ms
315,764 KB
testcase_49 AC 1,785 ms
315,792 KB
testcase_50 AC 84 ms
315,720 KB
testcase_51 AC 933 ms
315,824 KB
testcase_52 AC 935 ms
315,716 KB
testcase_53 MLE -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
using lint = long long int;
using P = pair<int, int>;
using PL = pair<lint, lint>;
#define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++)
#define IFOR(i, begin, end) for(int i=(end)-1,i##_begin_=(begin);i>=i##_begin_;i--)
#define REP(i, n) FOR(i,0,n)
#define IREP(i, n) IFOR(i,0,n)
#define ALL(a)  (a).begin(),(a).end()
constexpr int MOD = 1000000007;
constexpr lint B1 = 1532834020;
constexpr lint M1 = 2147482409;
constexpr lint B2 = 1388622299;
constexpr lint M2 = 2147478017;
constexpr int INF = 2147483647;
void yes(bool expr) {cout << (expr ? "Yes" : "No") << "\n";}
template<class T>void chmax(T &a, const T &b) { if (a<b) a=b; }
template<class T>void chmin(T &a, const T &b) { if (b<a) a=b; }
int main()
{
  ios::sync_with_stdio(false);
  cin.tie(0);
  cout.tie(0);
  lint T, X, A, Y, B;
  cin >> T >> X >> A >> Y >> B;
  vector<lint> dp(40000001, 1e18);
  dp[20000000] = 0;
  set<PL> st;
  st.insert(PL(0, 20000000));
  lint ans = 1e18;
  while(!st.empty()) {
    PL p = *st.begin();
    st.erase(p);
    lint x = p.second;
    if(x <= 20000000+T) chmin(ans, dp[x] + abs(20000000+T-x));
    if(dp[x] > ans) break;
    if(x+A < 40000001 && dp[x] + X < dp[x+A]) {
      dp[x+A] = dp[x] + X;
      st.insert(PL(dp[x+A], x+A));
    }
    if(x-B >= 0 && dp[x] + Y < dp[x-B]) {
      dp[x-B] = dp[x] + Y;
      st.insert(PL(dp[x-B], x-B));
    }
  }
  cout << ans << endl;
}
0