結果

問題 No.808 Kaiten Sushi?
ユーザー startcppstartcpp
提出日時 2019-03-22 23:58:23
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,169 bytes
コンパイル時間 739 ms
コンパイル使用メモリ 130,640 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-05-07 18:50:21
合計ジャッジ時間 30,375 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 7 ms
6,944 KB
testcase_08 AC 7 ms
6,940 KB
testcase_09 AC 16 ms
6,944 KB
testcase_10 AC 11 ms
6,940 KB
testcase_11 AC 8 ms
6,944 KB
testcase_12 AC 12 ms
6,944 KB
testcase_13 AC 9 ms
6,940 KB
testcase_14 AC 4 ms
6,944 KB
testcase_15 AC 16 ms
6,944 KB
testcase_16 AC 12 ms
6,940 KB
testcase_17 AC 4 ms
6,944 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 315 ms
7,680 KB
testcase_24 AC 231 ms
6,944 KB
testcase_25 AC 271 ms
7,296 KB
testcase_26 AC 262 ms
7,040 KB
testcase_27 AC 1,070 ms
12,416 KB
testcase_28 AC 242 ms
6,940 KB
testcase_29 AC 1,014 ms
11,904 KB
testcase_30 AC 581 ms
9,088 KB
testcase_31 AC 1,145 ms
12,800 KB
testcase_32 AC 1,298 ms
14,208 KB
testcase_33 AC 590 ms
8,960 KB
testcase_34 AC 703 ms
9,728 KB
testcase_35 AC 887 ms
11,136 KB
testcase_36 AC 578 ms
8,832 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 1 ms
6,940 KB
testcase_39 AC 1,931 ms
13,440 KB
testcase_40 AC 249 ms
6,940 KB
testcase_41 AC 259 ms
6,944 KB
testcase_42 AC 1,271 ms
11,648 KB
testcase_43 AC 378 ms
7,040 KB
testcase_44 AC 972 ms
9,728 KB
testcase_45 AC 363 ms
6,940 KB
testcase_46 AC 174 ms
6,944 KB
testcase_47 AC 1,945 ms
14,464 KB
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 AC 768 ms
11,136 KB
testcase_53 AC 1,068 ms
14,080 KB
testcase_54 AC 1 ms
6,940 KB
testcase_55 AC 1 ms
6,940 KB
testcase_56 AC 2 ms
6,940 KB
testcase_57 AC 301 ms
7,168 KB
testcase_58 AC 517 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <set>
#define int long long
#define rep(i, n) for(i = 0; i < n; i++)
using namespace std;

int n, l;
int x[100000];
int y[100000];

int simurate(int last) {
	set<int> A;
	set<int> B;
	set<int>::iterator it;
	int i;
	
	rep(i, n) if (i > 0) A.insert(x[i]);
	rep(i, n) if (i != last) B.insert(y[i]);
	
	int now = x[0];
	int ret = 0;
	
	rep(i, 2 * n - 2) {
		if (i % 2 == 0) {
			it = B.lower_bound(now);
			if (it == B.end())
				it = B.lower_bound(0);
			int nxt = (*it);
			if (nxt < now) {
				ret++;
			}
			B.erase(it);
			now = nxt;
		}
		else {
			it = A.lower_bound(now);
			if (it == A.end())
				it = A.lower_bound(0);
			int nxt = (*it);
			if (nxt < now) {
				ret++;
			}
			A.erase(it);
			now = nxt;
		}
	}
	
	if (y[last] < now) ret++;
	return ret;
}

signed main() {
	int i;
	
	cin >> n >> l;
	rep(i, n) cin >> x[i];
	rep(i, n) cin >> y[i];
	
	int okimoti = simurate(n - 1);
	int st = -1, ed = n - 1, mid;	//(st, ed], xxxooo
	while (ed - st >= 2) {
		mid = (st + ed) / 2;
		if (simurate(mid) > okimoti) st = mid;
		else ed = mid;
	}
	
	int ans = simurate(ed) * l + y[ed];
	cout << ans << endl;
	return 0;
}
0