結果

問題 No.1460 Max of Min
ユーザー 👑 emthrmemthrm
提出日時 2021-03-31 22:17:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,508 bytes
コンパイル時間 2,061 ms
コンパイル使用メモリ 205,020 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-09 08:24:41
合計ジャッジ時間 13,589 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 2 ms
6,944 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 51 ms
6,940 KB
testcase_33 AC 34 ms
6,940 KB
testcase_34 AC 38 ms
6,944 KB
testcase_35 AC 24 ms
6,944 KB
testcase_36 AC 16 ms
6,940 KB
testcase_37 AC 42 ms
6,944 KB
testcase_38 AC 51 ms
6,940 KB
testcase_39 AC 34 ms
6,940 KB
testcase_40 AC 32 ms
6,944 KB
testcase_41 AC 25 ms
6,940 KB
testcase_42 AC 23 ms
6,944 KB
testcase_43 RE -
testcase_44 RE -
testcase_45 AC 12 ms
6,940 KB
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 AC 13 ms
6,940 KB
testcase_51 RE -
testcase_52 RE -
testcase_53 AC 47 ms
6,940 KB
testcase_54 AC 57 ms
6,940 KB
testcase_55 RE -
testcase_56 AC 53 ms
6,944 KB
testcase_57 RE -
testcase_58 RE -
testcase_59 AC 59 ms
6,944 KB
testcase_60 RE -
testcase_61 AC 54 ms
6,944 KB
testcase_62 AC 53 ms
6,940 KB
testcase_63 AC 56 ms
6,944 KB
testcase_64 AC 60 ms
6,940 KB
testcase_65 RE -
testcase_66 AC 53 ms
6,944 KB
testcase_67 AC 66 ms
6,940 KB
testcase_68 RE -
testcase_69 AC 54 ms
6,944 KB
testcase_70 AC 54 ms
6,944 KB
testcase_71 RE -
testcase_72 AC 55 ms
6,940 KB
testcase_73 AC 55 ms
6,940 KB
testcase_74 AC 55 ms
6,944 KB
testcase_75 AC 54 ms
6,940 KB
testcase_76 AC 53 ms
6,944 KB
testcase_77 AC 56 ms
6,944 KB
testcase_78 AC 53 ms
6,940 KB
testcase_79 AC 53 ms
6,944 KB
testcase_80 AC 54 ms
6,944 KB
testcase_81 AC 53 ms
6,940 KB
testcase_82 AC 52 ms
6,940 KB
testcase_83 AC 55 ms
6,944 KB
testcase_84 RE -
testcase_85 RE -
testcase_86 RE -
testcase_87 RE -
testcase_88 RE -
testcase_89 RE -
testcase_90 RE -
testcase_91 RE -
testcase_92 RE -
testcase_93 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 1000000007;
// constexpr int MOD = 998244353;
constexpr int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1};
constexpr int dy8[] = {1, 1, 0, -1, -1, -1, 0, 1}, dx8[] = {0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

int main() {
  constexpr int X = 50000;
  int k; ll n; cin >> k >> n;
  vector<ll> a(X, -LINF), b(k);
  REP(i, k) cin >> a[i];
  REP(i, k) cin >> b[i];
  FOR(i, k, X) REP(j, k) chmax(a[i], min(a[i - k + j], b[j]));
  if (n < X) {
    cout << a[n] << '\n';
  } else {
    int period = n;
    while (true) {
      bool same = true;
      REP(i, period) {
        if (a[X - period + i] != a[X - period * 2 + i]) {
          same = false;
          break;
        }
      }
      if (same) break;
      --period;
    }
    n -= (n - X - 1 + period - 1) / period * period;
    cout << a[n] << '\n';
  }
  return 0;
}
0