結果

問題 No.808 Kaiten Sushi?
ユーザー betrue12betrue12
提出日時 2019-03-22 23:13:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,016 bytes
コンパイル時間 2,478 ms
コンパイル使用メモリ 207,916 KB
実行使用メモリ 9,184 KB
最終ジャッジ日時 2024-09-19 06:35:35
合計ジャッジ時間 5,748 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 37 ms
6,064 KB
testcase_24 AC 30 ms
5,376 KB
testcase_25 AC 32 ms
6,024 KB
testcase_26 AC 31 ms
5,992 KB
testcase_27 AC 88 ms
8,928 KB
testcase_28 AC 27 ms
5,376 KB
testcase_29 AC 83 ms
8,852 KB
testcase_30 AC 51 ms
6,256 KB
testcase_31 AC 92 ms
8,988 KB
testcase_32 AC 104 ms
9,160 KB
testcase_33 AC 55 ms
6,256 KB
testcase_34 AC 61 ms
6,496 KB
testcase_35 AC 76 ms
8,612 KB
testcase_36 AC 56 ms
6,244 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 97 ms
9,068 KB
testcase_40 AC 22 ms
5,376 KB
testcase_41 AC 27 ms
5,376 KB
testcase_42 AC 77 ms
8,688 KB
testcase_43 AC 36 ms
5,980 KB
testcase_44 AC 58 ms
6,244 KB
testcase_45 AC 35 ms
5,976 KB
testcase_46 AC 22 ms
5,376 KB
testcase_47 AC 106 ms
9,056 KB
testcase_48 AC 103 ms
9,060 KB
testcase_49 AC 109 ms
9,060 KB
testcase_50 AC 108 ms
9,184 KB
testcase_51 AC 107 ms
9,056 KB
testcase_52 AC 70 ms
8,624 KB
testcase_53 AC 99 ms
9,040 KB
testcase_54 AC 2 ms
5,376 KB
testcase_55 AC 2 ms
5,376 KB
testcase_56 AC 1 ms
5,376 KB
testcase_57 AC 31 ms
6,012 KB
testcase_58 AC 61 ms
6,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    int N;
    int64_t L, X[100000], Y[100000];
    cin >> N >> L;
    for(int i=0; i<N; i++) cin >> X[i];
    for(int i=0; i<N; i++) cin >> Y[i];

    vector<pair<int64_t, int64_t>> order;
    for(int i=0; i<N; i++){
        order.push_back({X[i], 1});
        order.push_back({Y[i], -1});
    }
    sort(order.begin(), order.end());

    int mn = 0, now = 0;
    for(auto& p : order){
        now += p.second;
        mn = min(mn, now);
    }
    mn *= -1;

    order.clear();
    for(int i=0; i<N; i++){
        order.push_back({X[i], 1});
        if(i < mn){
            order.push_back({Y[i]+L, -1});
        }else{
            order.push_back({Y[i], -1});
        }
    }
    sort(order.begin(), order.end());
    int64_t ans = 0;
    now = 0;
    for(auto& p : order){
        if(p.second == 1){
            now++;
        }else{
            now--;
            ans = max(ans, now*L + p.first);
        }
    }
    cout << ans << endl;
    return 0;
}
0