結果

問題 No.808 Kaiten Sushi?
ユーザー startcppstartcpp
提出日時 2019-03-22 23:47:40
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,169 bytes
コンパイル時間 586 ms
コンパイル使用メモリ 65,888 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-10-12 21:54:08
合計ジャッジ時間 31,742 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 6 ms
5,248 KB
testcase_08 AC 7 ms
5,248 KB
testcase_09 AC 16 ms
5,248 KB
testcase_10 AC 11 ms
5,248 KB
testcase_11 AC 8 ms
5,248 KB
testcase_12 AC 12 ms
5,248 KB
testcase_13 AC 10 ms
5,248 KB
testcase_14 AC 4 ms
5,248 KB
testcase_15 AC 16 ms
5,248 KB
testcase_16 AC 12 ms
5,248 KB
testcase_17 AC 5 ms
5,248 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 263 ms
7,552 KB
testcase_24 AC 196 ms
6,820 KB
testcase_25 AC 229 ms
7,296 KB
testcase_26 AC 213 ms
7,168 KB
testcase_27 AC 1,080 ms
12,288 KB
testcase_28 AC 226 ms
6,016 KB
testcase_29 AC 992 ms
12,032 KB
testcase_30 AC 542 ms
8,832 KB
testcase_31 AC 1,180 ms
12,928 KB
testcase_32 AC 1,413 ms
14,080 KB
testcase_33 AC 570 ms
8,832 KB
testcase_34 AC 692 ms
9,728 KB
testcase_35 AC 886 ms
11,008 KB
testcase_36 AC 559 ms
8,704 KB
testcase_37 AC 1 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 1,988 ms
13,440 KB
testcase_40 AC 242 ms
5,888 KB
testcase_41 AC 259 ms
6,144 KB
testcase_42 AC 1,249 ms
11,648 KB
testcase_43 AC 355 ms
6,912 KB
testcase_44 AC 904 ms
9,728 KB
testcase_45 AC 357 ms
6,912 KB
testcase_46 AC 175 ms
5,504 KB
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 AC 722 ms
11,136 KB
testcase_53 AC 992 ms
14,208 KB
testcase_54 AC 2 ms
5,248 KB
testcase_55 AC 1 ms
5,248 KB
testcase_56 AC 1 ms
5,248 KB
testcase_57 AC 252 ms
7,040 KB
testcase_58 AC 415 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