結果

問題 No.2099 [Cherry Alpha B] Time Machine
ユーザー butsurizukibutsurizuki
提出日時 2022-10-05 00:14:15
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 756 bytes
コンパイル時間 9,129 ms
コンパイル使用メモリ 337,252 KB
実行使用メモリ 394,256 KB
最終ジャッジ日時 2024-06-26 13:21:54
合計ジャッジ時間 31,765 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 317 ms
394,240 KB
testcase_01 AC 260 ms
394,072 KB
testcase_02 AC 259 ms
394,076 KB
testcase_03 AC 353 ms
393,984 KB
testcase_04 AC 360 ms
394,112 KB
testcase_05 AC 268 ms
394,088 KB
testcase_06 AC 286 ms
394,048 KB
testcase_07 AC 282 ms
394,048 KB
testcase_08 AC 265 ms
394,240 KB
testcase_09 AC 269 ms
394,112 KB
testcase_10 AC 267 ms
394,112 KB
testcase_11 AC 271 ms
394,088 KB
testcase_12 AC 279 ms
394,112 KB
testcase_13 AC 355 ms
394,068 KB
testcase_14 AC 355 ms
394,084 KB
testcase_15 AC 265 ms
394,088 KB
testcase_16 AC 286 ms
394,112 KB
testcase_17 AC 286 ms
394,112 KB
testcase_18 AC 274 ms
394,076 KB
testcase_19 AC 270 ms
394,068 KB
testcase_20 AC 271 ms
394,112 KB
testcase_21 AC 275 ms
394,112 KB
testcase_22 AC 271 ms
394,112 KB
testcase_23 AC 277 ms
394,240 KB
testcase_24 AC 271 ms
394,104 KB
testcase_25 AC 275 ms
394,100 KB
testcase_26 AC 272 ms
394,112 KB
testcase_27 AC 274 ms
394,084 KB
testcase_28 AC 354 ms
394,068 KB
testcase_29 AC 355 ms
394,048 KB
testcase_30 AC 270 ms
394,112 KB
testcase_31 AC 284 ms
394,112 KB
testcase_32 AC 288 ms
394,084 KB
testcase_33 AC 355 ms
394,112 KB
testcase_34 AC 354 ms
394,112 KB
testcase_35 AC 266 ms
393,984 KB
testcase_36 AC 286 ms
394,112 KB
testcase_37 AC 283 ms
394,072 KB
testcase_38 AC 279 ms
394,112 KB
testcase_39 AC 284 ms
394,112 KB
testcase_40 AC 275 ms
394,076 KB
testcase_41 AC 281 ms
394,084 KB
testcase_42 AC 274 ms
394,048 KB
testcase_43 AC 273 ms
394,112 KB
testcase_44 AC 270 ms
394,112 KB
testcase_45 AC 273 ms
394,112 KB
testcase_46 AC 270 ms
394,112 KB
testcase_47 AC 277 ms
394,096 KB
testcase_48 AC 354 ms
394,108 KB
testcase_49 AC 358 ms
394,112 KB
testcase_50 AC 268 ms
394,076 KB
testcase_51 AC 283 ms
394,112 KB
testcase_52 AC 283 ms
393,984 KB
testcase_53 AC 354 ms
394,112 KB
testcase_54 AC 274 ms
394,076 KB
testcase_55 AC 270 ms
394,136 KB
testcase_56 AC 264 ms
393,984 KB
testcase_57 AC 267 ms
394,088 KB
testcase_58 AC 266 ms
394,112 KB
testcase_59 AC 270 ms
394,112 KB
testcase_60 AC 265 ms
394,068 KB
testcase_61 AC 264 ms
394,108 KB
testcase_62 AC 268 ms
394,112 KB
testcase_63 AC 268 ms
394,048 KB
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "testlib.h"
#include <bits/stdc++.h>

using namespace std;

int main(){
  registerValidation();
  long long t=inf.readLong(-10000000ll,10000000ll);inf.readEoln();
  ensuref(t!=0,"t==0");
  long long x=inf.readLong(1ll,10000000ll);inf.readSpace();
  long long a=inf.readLong(x+1,10000000ll);inf.readEoln();
  long long y=inf.readLong(1ll,10000000ll);inf.readSpace();
  long long b=inf.readLong(1ll,10000000ll);inf.readEoln();
  inf.readEof();

  long long cent=25'000'000;
  vector<long long> dp(50'000'000,8e18);
  for(int i=cent;i<5e7;i++){dp[i]=i-cent;}
  for(int i=50'000'000-1;i>=b;i--){
    dp[i-b]=min(dp[i-b],dp[i]+y);
  }
  for(int i=0;i<50'000'000-a;i++){
    dp[i+a]=min(dp[i+a],dp[i]+x);
  }
  cout << dp[cent+t] << "\n";
  return 0;
}
0