結果

問題 No.808 Kaiten Sushi?
ユーザー SumitacchanSumitacchan
提出日時 2019-03-22 23:27:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,462 bytes
コンパイル時間 1,762 ms
コンパイル使用メモリ 176,760 KB
実行使用メモリ 17,200 KB
最終ジャッジ日時 2023-10-19 10:49:16
合計ジャッジ時間 5,395 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 WA -
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 3 ms
4,348 KB
testcase_09 WA -
testcase_10 AC 3 ms
4,348 KB
testcase_11 AC 3 ms
4,348 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 3 ms
4,348 KB
testcase_15 WA -
testcase_16 AC 3 ms
4,348 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
4,348 KB
testcase_21 AC 2 ms
4,348 KB
testcase_22 AC 3 ms
4,348 KB
testcase_23 AC 31 ms
8,752 KB
testcase_24 AC 25 ms
7,696 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 88 ms
16,936 KB
testcase_33 AC 46 ms
10,336 KB
testcase_34 AC 53 ms
11,392 KB
testcase_35 AC 64 ms
13,240 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 18 ms
6,392 KB
testcase_41 AC 21 ms
6,732 KB
testcase_42 AC 67 ms
13,768 KB
testcase_43 AC 29 ms
7,960 KB
testcase_44 AC 50 ms
11,392 KB
testcase_45 AC 29 ms
7,960 KB
testcase_46 WA -
testcase_47 AC 89 ms
17,200 KB
testcase_48 AC 91 ms
17,200 KB
testcase_49 AC 92 ms
17,200 KB
testcase_50 AC 89 ms
17,200 KB
testcase_51 AC 89 ms
17,200 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 2 ms
4,348 KB
testcase_55 AC 2 ms
4,348 KB
testcase_56 AC 2 ms
4,348 KB
testcase_57 AC 31 ms
8,224 KB
testcase_58 AC 52 ms
10,600 KB
権限があれば一括ダウンロードができます

ソースコード

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);

    map<int, int> m;
    for(int i: x) m[i] = 1;
    for(int i: y) m[i] = 2;
    int c = 0;
    int n = 0, d = 0;
    int tmp;
    for(auto p: m){
        if(p.second == 2){
            if(c == n) d = p.first;
            c = max(c - 1, 0LL);
        }else{
            c++;
            Max(n, c);
        }
    }
    for(auto p: m){
        if(p.second == 2){
            if(c > n) d = p.first;
            c = max(c - 1, 0LL);
            if(c == 0) break;
        }else{
            c++;
            Max(n, c);
        }
    }
    int ans = (n - 1) * L + d;
    cout << ans << endl;

    return 0;
}
0