結果

問題 No.808 Kaiten Sushi?
ユーザー chocoruskchocorusk
提出日時 2019-03-31 07:04:27
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 1,596 bytes
コンパイル時間 901 ms
コンパイル使用メモリ 107,196 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-11-19 07:03:49
合計ジャッジ時間 7,868 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 6 ms
5,248 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 5 ms
5,248 KB
testcase_13 AC 4 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 5 ms
5,248 KB
testcase_16 AC 5 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 54 ms
7,552 KB
testcase_24 AC 44 ms
6,656 KB
testcase_25 AC 48 ms
7,424 KB
testcase_26 AC 47 ms
7,040 KB
testcase_27 AC 158 ms
12,416 KB
testcase_28 AC 45 ms
6,272 KB
testcase_29 AC 150 ms
11,904 KB
testcase_30 AC 90 ms
8,960 KB
testcase_31 AC 164 ms
12,928 KB
testcase_32 AC 190 ms
14,080 KB
testcase_33 AC 92 ms
8,832 KB
testcase_34 AC 104 ms
9,728 KB
testcase_35 AC 132 ms
10,880 KB
testcase_36 AC 91 ms
8,704 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 207 ms
13,312 KB
testcase_40 AC 39 ms
5,760 KB
testcase_41 AC 44 ms
6,144 KB
testcase_42 AC 156 ms
11,648 KB
testcase_43 AC 60 ms
6,912 KB
testcase_44 AC 117 ms
9,728 KB
testcase_45 AC 60 ms
6,912 KB
testcase_46 AC 32 ms
5,376 KB
testcase_47 AC 220 ms
14,336 KB
testcase_48 AC 217 ms
14,464 KB
testcase_49 AC 224 ms
14,464 KB
testcase_50 AC 217 ms
14,336 KB
testcase_51 AC 219 ms
14,336 KB
testcase_52 AC 107 ms
11,136 KB
testcase_53 AC 147 ms
13,952 KB
testcase_54 AC 2 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 2 ms
5,248 KB
testcase_57 AC 51 ms
7,168 KB
testcase_58 AC 89 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<ll, int> P;
int n; ll l;
ll x[100001], y[100001];
int main()
{
    cin>>n>>l;
    set<ll> stx, sty;
    for(int i=0; i<n; i++){
        cin>>x[i]; stx.insert(x[i]);
    }
    for(int i=0; i<n; i++){
        cin>>y[i]; sty.insert(y[i]);
    }
    ll r=0;
    int ct=0;
    while(!stx.empty() && !sty.empty()){
        auto itrx=stx.lower_bound(r);
        if(itrx==stx.end()){
            ct++;
            r=*stx.begin();
        }else{
            r=*itrx;
        }
        stx.erase(r);
        if(stx.empty()){
            if(r>*sty.begin()) ct++;
            r=*sty.begin();
            sty.erase(sty.begin());
            break;
        }
        ll r2;
        auto itry=sty.lower_bound(r);
        if(itry==sty.end()) r2=*sty.begin();
        else r2=*itry;
        itrx=stx.lower_bound(r2);
        ll r1;
        if(itrx==stx.end()) r1=*stx.begin();
        else r1=*itrx;
        itry=sty.lower_bound(r1);
        if(itry==sty.begin()){
            itry=sty.end(); itry--;
        }else{
            itry--;
        }
        if(*itry<r) ct++;
        r=*itry;
        sty.erase(itry);
    }
    ll ans=(ll)ct*l+r;
    cout<<ans<<endl;
    return 0;
}
0