結果
問題 | No.808 Kaiten Sushi? |
ユーザー | gazelle |
提出日時 | 2019-03-22 22:13:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,565 bytes |
コンパイル時間 | 1,123 ms |
コンパイル使用メモリ | 123,900 KB |
実行使用メモリ | 18,816 KB |
最終ジャッジ日時 | 2024-09-19 05:47:01 |
合計ジャッジ時間 | 10,240 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,764 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 12 ms
6,940 KB |
testcase_08 | AC | 14 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 21 ms
6,944 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 5 ms
6,940 KB |
testcase_21 | AC | 3 ms
6,944 KB |
testcase_22 | AC | 4 ms
6,940 KB |
testcase_23 | AC | 477 ms
10,624 KB |
testcase_24 | AC | 353 ms
9,216 KB |
testcase_25 | AC | 431 ms
10,112 KB |
testcase_26 | AC | 411 ms
9,728 KB |
testcase_27 | TLE | - |
testcase_28 | WA | - |
testcase_29 | TLE | - |
testcase_30 | WA | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
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 | -- | - |
ソースコード
#include<iostream> #include<iomanip> #include<vector> #include<algorithm> #include<set> #include<map> #include<unordered_map> #include<stack> #include<queue> #include<math.h> #include<functional> #include<bitset> using namespace std; using ll = long long; using ld = long double; using pint = pair<int, int>; using pll = pair<ll, ll>; #define MOD 1000000007LL #define INF 1000000000LL #define EPS 1e-10 #define FOR(i,n,m) for(ll i=n;i<(int)m;i++) #define REP(i,n) FOR(i,0,n) #define DUMP(a) REP(d,a.size()){cout<<a[d];if(d!=a.size()-1)cout<<" ";else cout<<endl;} #define ALL(v) v.begin(),v.end() #define UNIQUE(v) sort(ALL(v));v.erase(unique(ALL(v)),v.end()); #define pb push_back int main() { cin.tie(0); ios::sync_with_stdio(false); ll n, l; cin >> n >> l; set<ll> xx, yy; REP(i, n) { ll tmp; cin >> tmp; xx.insert(tmp); } REP(i, n) { ll tmp; cin >> tmp; yy.insert(tmp); } ll lb = 0, ub = INF * INF; while(ub - lb > 1) { ll m = (ub + lb) / 2; ll pos = m % l, tmp = 0; set<ll> x = xx, y = yy; REP(i, n) { auto ite = y.upper_bound(pos); if(ite == y.begin()) { tmp += pos + 1; pos = l - 1; ite = y.end(); ite--; } else ite--; tmp += pos - *ite; pos = *ite; y.erase(ite); ite = x.upper_bound(pos); if(ite == x.begin()) { tmp += l - pos; pos = 0; ite = x.end(); ite--; } else ite--; tmp += pos - *ite; pos = *ite; x.erase(ite); } tmp += pos; if(tmp > m) lb = m; else ub = m; } cout << ub << endl; return 0; } /* --------------------------------------- */