結果

問題 No.1460 Max of Min
ユーザー ktr216ktr216
提出日時 2021-03-31 22:51:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 470 bytes
コンパイル時間 1,877 ms
コンパイル使用メモリ 168,580 KB
実行使用メモリ 817,920 KB
最終ジャッジ日時 2024-12-15 21:17:53
合計ジャッジ時間 13,844 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
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 WA -
testcase_18 RE -
testcase_19 RE -
testcase_20 MLE -
testcase_21 RE -
testcase_22 RE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 162 ms
341,120 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 WA -
testcase_33 AC 3 ms
5,120 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 RE -
testcase_37 AC 3 ms
5,120 KB
testcase_38 AC 4 ms
5,120 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 4 ms
5,120 KB
testcase_57 WA -
testcase_58 RE -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 RE -
testcase_64 RE -
testcase_65 WA -
testcase_66 WA -
testcase_67 AC 4 ms
5,120 KB
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 AC 4 ms
5,120 KB
testcase_75 AC 4 ms
5,120 KB
testcase_76 AC 4 ms
5,120 KB
testcase_77 AC 4 ms
5,120 KB
testcase_78 AC 4 ms
5,120 KB
testcase_79 AC 4 ms
5,120 KB
testcase_80 AC 5 ms
5,120 KB
testcase_81 AC 4 ms
5,120 KB
testcase_82 AC 4 ms
5,120 KB
testcase_83 AC 4 ms
5,120 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 #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
using namespace std;

typedef long long ll;

int main() {
    ll K, N;
    cin >> K >> N;
    vector<ll> A(N * 2, -1e18), B(K);
    rep(i, K) cin >> A[i];
    rep(i, K) cin >> B[i];
    for (int i = K; i < K * 2; i++) {
        rep(j, K) {
            A[i] = max(A[i], min(A[i - K + j], B[j]));
        }
    }
    if (N < K * 2) cout << A[N] << "\n";
    else cout << A[K + N % K] << "\n";
}
0