結果

問題 No.808 Kaiten Sushi?
ユーザー face4face4
提出日時 2019-03-22 22:33:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,231 bytes
コンパイル時間 625 ms
コンパイル使用メモリ 73,600 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-09-19 06:01:38
合計ジャッジ時間 5,866 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 53 ms
7,040 KB
testcase_24 AC 42 ms
6,400 KB
testcase_25 AC 46 ms
6,784 KB
testcase_26 AC 43 ms
6,528 KB
testcase_27 AC 150 ms
11,264 KB
testcase_28 AC 42 ms
5,888 KB
testcase_29 AC 141 ms
10,624 KB
testcase_30 AC 86 ms
8,192 KB
testcase_31 AC 159 ms
11,520 KB
testcase_32 AC 175 ms
12,672 KB
testcase_33 AC 84 ms
8,192 KB
testcase_34 AC 96 ms
9,088 KB
testcase_35 AC 121 ms
10,112 KB
testcase_36 AC 84 ms
8,064 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 185 ms
11,904 KB
testcase_40 WA -
testcase_41 AC 42 ms
5,760 KB
testcase_42 AC 140 ms
10,496 KB
testcase_43 AC 56 ms
6,400 KB
testcase_44 AC 108 ms
8,960 KB
testcase_45 AC 57 ms
6,528 KB
testcase_46 AC 31 ms
5,376 KB
testcase_47 AC 200 ms
12,800 KB
testcase_48 AC 195 ms
12,800 KB
testcase_49 AC 203 ms
12,800 KB
testcase_50 AC 210 ms
12,800 KB
testcase_51 AC 211 ms
12,800 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 2 ms
5,376 KB
testcase_55 AC 1 ms
5,376 KB
testcase_56 AC 1 ms
5,376 KB
testcase_57 WA -
testcase_58 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set>
using namespace std;
typedef long long ll;

int main(){
    int n, l;
    cin >> n >> l;
    set<int> s[2];
    int in;
    for(int i = 0; i < n; i++)  cin >> in, s[0].insert(in);
    for(int i = 0; i < n; i++)  cin >> in, s[1].insert(in);
    ll ans = 0;
    int take = *(s[0].begin()), turn = 0;
    s[0].erase(s[0].begin());
    while(!s[0].empty() || !s[1].empty()){
        auto its = s[turn].upper_bound(take);
        auto itt = s[1-turn].upper_bound(take);
        if(its == s[turn].end())    its = s[turn].begin();
        if(itt == s[1-turn].end())  itt = s[1-turn].begin();
        int su = *its, te = *itt;
        if(take > su)   su += l;
        if(take > te)   te += l;
        if(te > su){
            int ntake = *itt;
            s[1-turn].erase(itt);
            if(take > ntake)    ans += l;
            take = ntake;
        }else{
            auto it = s[1-turn].lower_bound(*its);
            if(it == s[1-turn].begin()) it = s[1-turn].end();
            it--;
            int ntake = *it;
            s[1-turn].erase(it);
            if(take > ntake)    ans += l;
            take = ntake;
        }
        turn = 1-turn;
    }
    cout << ans+take << endl;
    return 0;
}
0