結果

問題 No.1460 Max of Min
ユーザー SSRSSSRS
提出日時 2021-03-31 21:52:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 601 ms / 2,000 ms
コード長 1,207 bytes
コンパイル時間 2,263 ms
コンパイル使用メモリ 174,804 KB
実行使用メモリ 11,300 KB
最終ジャッジ日時 2024-05-09 07:18:57
合計ジャッジ時間 35,962 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 505 ms
11,292 KB
testcase_04 AC 498 ms
11,164 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 498 ms
11,172 KB
testcase_07 AC 498 ms
11,172 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 490 ms
11,136 KB
testcase_11 AC 505 ms
11,140 KB
testcase_12 AC 86 ms
5,376 KB
testcase_13 AC 473 ms
10,388 KB
testcase_14 AC 134 ms
5,760 KB
testcase_15 AC 58 ms
5,376 KB
testcase_16 AC 424 ms
10,000 KB
testcase_17 AC 240 ms
7,296 KB
testcase_18 AC 4 ms
5,376 KB
testcase_19 AC 199 ms
6,660 KB
testcase_20 AC 8 ms
5,376 KB
testcase_21 AC 24 ms
5,376 KB
testcase_22 AC 220 ms
6,908 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 285 ms
7,824 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 AC 501 ms
10,916 KB
testcase_27 AC 63 ms
5,376 KB
testcase_28 AC 17 ms
5,376 KB
testcase_29 AC 258 ms
7,552 KB
testcase_30 AC 466 ms
10,496 KB
testcase_31 AC 223 ms
7,040 KB
testcase_32 AC 398 ms
9,496 KB
testcase_33 AC 117 ms
5,376 KB
testcase_34 AC 173 ms
6,396 KB
testcase_35 AC 56 ms
5,376 KB
testcase_36 AC 21 ms
5,376 KB
testcase_37 AC 238 ms
7,300 KB
testcase_38 AC 408 ms
9,876 KB
testcase_39 AC 124 ms
5,632 KB
testcase_40 AC 84 ms
5,376 KB
testcase_41 AC 59 ms
5,376 KB
testcase_42 AC 33 ms
5,376 KB
testcase_43 AC 205 ms
6,784 KB
testcase_44 AC 372 ms
9,236 KB
testcase_45 AC 10 ms
5,376 KB
testcase_46 AC 151 ms
6,144 KB
testcase_47 AC 203 ms
6,912 KB
testcase_48 AC 432 ms
9,868 KB
testcase_49 AC 289 ms
8,076 KB
testcase_50 AC 14 ms
5,376 KB
testcase_51 AC 225 ms
7,168 KB
testcase_52 AC 46 ms
5,376 KB
testcase_53 AC 244 ms
7,428 KB
testcase_54 AC 509 ms
11,296 KB
testcase_55 AC 520 ms
11,168 KB
testcase_56 AC 517 ms
11,168 KB
testcase_57 AC 528 ms
11,168 KB
testcase_58 AC 537 ms
11,300 KB
testcase_59 AC 535 ms
11,296 KB
testcase_60 AC 524 ms
11,164 KB
testcase_61 AC 516 ms
11,168 KB
testcase_62 AC 503 ms
11,164 KB
testcase_63 AC 505 ms
11,296 KB
testcase_64 AC 536 ms
11,168 KB
testcase_65 AC 554 ms
11,168 KB
testcase_66 AC 601 ms
11,164 KB
testcase_67 AC 546 ms
11,292 KB
testcase_68 AC 525 ms
11,172 KB
testcase_69 AC 511 ms
11,168 KB
testcase_70 AC 534 ms
11,172 KB
testcase_71 AC 544 ms
11,164 KB
testcase_72 AC 561 ms
11,172 KB
testcase_73 AC 535 ms
11,168 KB
testcase_74 AC 515 ms
11,040 KB
testcase_75 AC 533 ms
11,264 KB
testcase_76 AC 536 ms
11,036 KB
testcase_77 AC 537 ms
11,040 KB
testcase_78 AC 513 ms
11,048 KB
testcase_79 AC 508 ms
11,160 KB
testcase_80 AC 489 ms
11,028 KB
testcase_81 AC 511 ms
11,040 KB
testcase_82 AC 490 ms
11,032 KB
testcase_83 AC 522 ms
11,036 KB
testcase_84 AC 521 ms
10,912 KB
testcase_85 AC 531 ms
10,900 KB
testcase_86 AC 539 ms
10,912 KB
testcase_87 AC 509 ms
11,040 KB
testcase_88 AC 519 ms
11,036 KB
testcase_89 AC 536 ms
11,020 KB
testcase_90 AC 523 ms
10,912 KB
testcase_91 AC 533 ms
11,136 KB
testcase_92 AC 521 ms
11,168 KB
testcase_93 AC 500 ms
10,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long INF = 1000000000000000000;
vector<long long> add1(vector<long long> x, vector<long long> d){
  int K = d.size();
  vector<long long> ans(K);
  ans[0] = min(d[0], x[K - 1]);
  for (int i = 1; i < K; i++){
    ans[i] = max(x[i - 1], min(d[i], x[K - 1]));
  }
  return ans;
}
vector<long long> mul2(vector<long long> x, vector<long long> d){
  int K = d.size();
  vector<vector<long long>> next(K);
  next[0] = x;
  for (int i = 1; i < K; i++){
    next[i] = add1(next[i - 1], d);
  }
  vector<long long> ans(K, -INF);
  for (int i = 0; i < K; i++){
    for (int j = 0; j < K; j++){
      ans[j] = max(ans[j], min(next[i][j], x[i]));
    }
  }
  return ans;
}
int main(){
  int K;
  long long N;
  cin >> K >> N;
  vector<long long> A(K);
  for (int i = 0; i < K; i++){
    cin >> A[i];
  }
  vector<long long> B(K);
  for (int i = 0; i < K; i++){
    cin >> B[i];
  }
  vector<long long> C(K, -INF);
  C[0] = INF;
  for (int i = 60; i >= 0; i--){
    C = mul2(C, B);
    if ((N >> i & 1) == 1){
      C = add1(C, B);
    }
  }
  long long ans = -INF;
  for (int i = 0; i < K; i++){
    ans = max(ans, min(A[i], C[i]));
  }
  cout << ans << endl;
}
0