結果

問題 No.808 Kaiten Sushi?
ユーザー SumitacchanSumitacchan
提出日時 2019-03-22 22:36:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,645 bytes
コンパイル時間 1,795 ms
コンパイル使用メモリ 178,856 KB
実行使用メモリ 24,492 KB
最終ジャッジ日時 2023-10-19 09:50:29
合計ジャッジ時間 9,532 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 2 ms
4,348 KB
testcase_04 WA -
testcase_05 AC 2 ms
4,348 KB
testcase_06 WA -
testcase_07 AC 12 ms
4,348 KB
testcase_08 AC 14 ms
4,348 KB
testcase_09 AC 36 ms
4,348 KB
testcase_10 AC 22 ms
4,348 KB
testcase_11 AC 16 ms
4,348 KB
testcase_12 WA -
testcase_13 AC 18 ms
4,348 KB
testcase_14 AC 7 ms
4,348 KB
testcase_15 WA -
testcase_16 AC 25 ms
4,348 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 924 ms
11,144 KB
testcase_24 AC 669 ms
9,560 KB
testcase_25 AC 814 ms
10,616 KB
testcase_26 AC 752 ms
10,100 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
struct fast_ios { fast_ios(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_;
#define FOR(i, begin, end) for(int i=(begin);i<(end);i++)
#define REP(i, n) FOR(i,0,n)
#define IFOR(i, begin, end) for(int i=(end)-1;i>=(begin);i--)
#define IREP(i, n) IFOR(i,0,n)
#define Sort(v) sort(v.begin(), v.end())
#define Reverse(v) reverse(v.begin(), v.end())
#define all(v) v.begin(),v.end()
#define SZ(v) ((int)v.size())
#define Lower_bound(v, x) distance(v.begin(), lower_bound(v.begin(), v.end(), x))
#define Upper_bound(v, x) distance(v.begin(), upper_bound(v.begin(), v.end(), x))
#define Max(a, b) a = max(a, b)
#define Min(a, b) a = min(a, b)
#define bit(n) (1LL<<(n))
#define bit_exist(x, n) ((x >> n) & 1)
#define Ans(f, y, n) if(f) cout << y << endl; else cout << n << endl;
#define debug(x) cout << #x << "=" << x << endl;
#define vdebug(v) cout << #v << "=" << endl; REP(i, v.size()){ cout << v[i] << ","; } cout << endl;
#define mdebug(m) cout << #m << "=" << endl; REP(i, m.size()){ REP(j, m[i].size()){ cout << m[i][j] << ","; } cout << endl;}
#define pb push_back
#define f first
#define s second
#define int long long
#define INF 1000000000000000000

using vec = vector<int>;
using mat = vector<vec>;
using Pii = pair<int, int>;
using PiP = pair<int, Pii>;
using PPi = pair<Pii, int>;
using bools = vector<bool>;
using pairs = vector<Pii>;

template<typename T> void readv(vector<T> &a){ REP(i, a.size()) cin >> a[i]; }
void readv_m1(vector<int> &a){ REP(i, a.size()){cin >> a[i]; a[i]--;} }

//int dx[4] = {1,0,-1,0};
//int dy[4] = {0,1,0,-1};

int mod = 1000000007;
//int mod = 998244353;
#define Add(x, y) x = (x + (y)) % mod
#define Mult(x, y) x = (x * (y)) % mod



signed main(){

    int N, L; cin >> N >> L;
    vec x(N); readv(x);
    vec y(N); readv(y);

    int ans0 = 0;
    if(true){
        set<int> X, Y;
        for(int i: x){
            X.insert(i);
            X.insert(i + L);
        }
        for(int i: y){
            Y.insert(i);
            Y.insert(i + L);
        }
        int l = 0;
        REP(i, N){
            auto it = X.lower_bound(l);
            int l2 = *it;
            ans0 += l2 - l;
            X.erase(l2 % L); X.erase(l2 % L + L);
            l = l2;
            if(l >= L) l -= L;

            it = Y.lower_bound(l);
            l2 = *it;
            ans0 += l2 - l;
            Y.erase(l2 % L); Y.erase(l2 % L + L);
            l = l2;
            if(l >= L) l -= L;
        }
        //debug(last);
    }

    int n = ans0 / L;
    int ans = ans0;
    int i0 = 0, i1 = N - 1;
    while(i1 - i0 > 1){
        ans0 = 0;
        int im = (i0 + i1) / 2;
        set<int> X, Y;
        for(int i: x){
            X.insert(i);
            X.insert(i + L);
        }
        for(int i: y){
            if(i != y[im]){
                Y.insert(i);
                Y.insert(i + L);
            }
        }
        int l = 0;
        REP(i, N){
            auto it = X.lower_bound(l);
            int l2 = *it;
            ans0 += l2 - l;
            X.erase(l2 % L); X.erase(l2 % L + L);
            l = l2;
            if(l >= L) l -= L;

            if(i != N - 1){
                it = Y.lower_bound(l);
                l2 = *it;
                ans0 += l2 - l;
                Y.erase(l2 % L); Y.erase(l2 % L + L);
                l = l2;
                if(l >= L) l -= L;
            }
        }
        if(y[im] >= l) ans0 += y[im] - l;
        else ans0 += L - (l - y[im]);
        Min(ans, ans0);
        if(ans0 / L <= n) i1 = im;
        else i0 = im;
    }

    cout << ans << endl;

    return 0;
}
0