結果
問題 | No.808 Kaiten Sushi? |
ユーザー | mtsd |
提出日時 | 2019-03-22 22:10:47 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 248 ms / 2,000 ms |
コード長 | 3,067 bytes |
コンパイル時間 | 703 ms |
コンパイル使用メモリ | 93,324 KB |
実行使用メモリ | 12,800 KB |
最終ジャッジ日時 | 2024-09-19 05:42:25 |
合計ジャッジ時間 | 6,484 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | AC | 3 ms
6,940 KB |
testcase_09 | AC | 5 ms
6,940 KB |
testcase_10 | AC | 4 ms
6,940 KB |
testcase_11 | AC | 4 ms
6,944 KB |
testcase_12 | AC | 4 ms
6,944 KB |
testcase_13 | AC | 3 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 5 ms
6,944 KB |
testcase_16 | AC | 4 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 1 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 53 ms
7,040 KB |
testcase_24 | AC | 44 ms
6,940 KB |
testcase_25 | AC | 48 ms
6,944 KB |
testcase_26 | AC | 46 ms
6,940 KB |
testcase_27 | AC | 167 ms
11,136 KB |
testcase_28 | AC | 47 ms
6,944 KB |
testcase_29 | AC | 158 ms
10,624 KB |
testcase_30 | AC | 94 ms
8,064 KB |
testcase_31 | AC | 178 ms
11,520 KB |
testcase_32 | AC | 207 ms
12,544 KB |
testcase_33 | AC | 97 ms
8,064 KB |
testcase_34 | AC | 110 ms
8,832 KB |
testcase_35 | AC | 134 ms
10,112 KB |
testcase_36 | AC | 95 ms
7,936 KB |
testcase_37 | AC | 2 ms
6,940 KB |
testcase_38 | AC | 1 ms
6,940 KB |
testcase_39 | AC | 220 ms
11,904 KB |
testcase_40 | AC | 43 ms
6,944 KB |
testcase_41 | AC | 48 ms
6,940 KB |
testcase_42 | AC | 163 ms
10,496 KB |
testcase_43 | AC | 63 ms
6,940 KB |
testcase_44 | AC | 122 ms
8,832 KB |
testcase_45 | AC | 62 ms
6,940 KB |
testcase_46 | AC | 34 ms
6,940 KB |
testcase_47 | AC | 227 ms
12,672 KB |
testcase_48 | AC | 248 ms
12,672 KB |
testcase_49 | AC | 242 ms
12,800 KB |
testcase_50 | AC | 232 ms
12,672 KB |
testcase_51 | AC | 237 ms
12,800 KB |
testcase_52 | AC | 111 ms
9,984 KB |
testcase_53 | AC | 159 ms
12,544 KB |
testcase_54 | AC | 2 ms
6,944 KB |
testcase_55 | AC | 1 ms
6,940 KB |
testcase_56 | AC | 1 ms
6,940 KB |
testcase_57 | AC | 45 ms
6,944 KB |
testcase_58 | AC | 81 ms
8,320 KB |
ソースコード
#include <iostream> #include <vector> #include <string> #include <cmath> #include <algorithm> #include <utility> #include <queue> #include <set> #include <map> #include <deque> #include <iomanip> #include <cstdio> #include <stack> #include <numeric> using namespace std; typedef long long ll; typedef pair<int,int> PII; typedef vector<int> VI; typedef vector<VI> VVI; #define MP make_pair #define PB push_back #define inf 1000000007 #define rep(i,n) for(int i=0;i<(int)(n);++i) vector<vector<pair<int,ll> > > g; int main(){ int n; ll L; cin >> n >> L; set<ll> st,st2; rep(i,n){ ll a; cin >> a; st.insert(a); } rep(i,n){ ll a; cin >> a; st2.insert(a); } ll ans = 0; ll now = 0; bool flag = 0; while(st2.size()>0){ if(!flag){ auto p = st.lower_bound(now); ll next,next2; if(p==st.end()){ next = *st.begin(); }else{ next = *p; } auto q = st2.lower_bound(next); ll goal; if(q==st2.end()){ next2 = *st2.begin(); auto pp = st.lower_bound(next2); if(pp==st.begin()){ pp = st.end(); pp--; goal = *pp; }else{ pp--; goal = *pp; } }else{ next2 = *q; auto pp = st.lower_bound(next2); pp--; goal = *pp; } if(now<goal){ ans += goal-now; }else{ ans += goal+L-now; } st.erase(goal); now = goal; flag = 1; }else{ auto p = st2.lower_bound(now); ll next,next2; if(p==st2.end()){ next = *st2.begin(); }else{ next = *p; } auto q = st.lower_bound(next); ll goal; if(q==st.end()){ next2 = *st.begin(); auto pp = st2.lower_bound(next2); if(pp==st2.begin()){ pp = st2.end(); pp--; goal = *pp; }else{ pp--; goal = *pp; } }else{ next2 = *q; auto pp = st2.lower_bound(next2); pp--; goal = *pp; } if(now<goal){ ans += goal-now; }else{ ans += goal+L-now; } st2.erase(goal); now = goal; flag = 0; } // for(auto x:st){ // cerr << x << " "; // } // cerr << endl; // for(auto x:st2){ // cerr << x << " "; // } // cerr << endl; } cout << ans << endl; return 0; }