結果

問題 No.1055 牛歩
ユーザー QCFiumQCFium
提出日時 2019-11-02 11:58:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,917 bytes
コンパイル時間 3,267 ms
コンパイル使用メモリ 192,920 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-05-05 22:30:37
合計ジャッジ時間 7,250 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
16,000 KB
testcase_01 AC 35 ms
10,112 KB
testcase_02 AC 21 ms
6,016 KB
testcase_03 AC 21 ms
6,016 KB
testcase_04 AC 21 ms
5,888 KB
testcase_05 AC 21 ms
6,016 KB
testcase_06 AC 39 ms
6,272 KB
testcase_07 AC 39 ms
6,272 KB
testcase_08 AC 40 ms
6,144 KB
testcase_09 AC 32 ms
5,760 KB
testcase_10 AC 32 ms
5,760 KB
testcase_11 AC 32 ms
5,632 KB
testcase_12 AC 20 ms
6,272 KB
testcase_13 AC 20 ms
6,400 KB
testcase_14 AC 32 ms
5,760 KB
testcase_15 AC 32 ms
5,760 KB
testcase_16 AC 23 ms
5,504 KB
testcase_17 AC 28 ms
5,376 KB
testcase_18 AC 28 ms
5,632 KB
testcase_19 AC 28 ms
5,504 KB
testcase_20 AC 31 ms
5,760 KB
testcase_21 AC 38 ms
5,888 KB
testcase_22 AC 47 ms
6,144 KB
testcase_23 AC 46 ms
6,144 KB
testcase_24 AC 44 ms
6,144 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
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 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>

int ri() {
	int n;
	scanf("%d", &n);
	return n;
}

/* TLE */

bool solve(int n, int m, int *a, int q, int *b) {
	assert(std::is_sorted(a, a + m));
	std::vector<int> list[m];
	for (int i = 0; i < q; i++) list[b[i]].push_back(i);
	int pos[q];
	for (int i = 0; i < q; i++) pos[i] = -2;
	// 0-th koma
	{
		int cur = a[0];
		for (auto i : list[0]) {
			if (!cur) cur++;
			else cur--;
			pos[i] = cur;
		}
	}
	for (int i = 1; i < m; i++) {
		std::deque<int> clearance; // {pos, clearance}
		{ // init clearance with slide maximum
			int head = 0;
			int cur_pos = a[i];
			for (auto j : list[i - 1]) {
				while (head < (int) list[i].size() && list[i][head] < j) head++, cur_pos++;
				int cur_clearance = cur_pos - pos[j];
				if (cur_clearance <= 0) return false;
				clearance.push_back(cur_clearance);
			}
		}
		int head = 0;
		int cur_pos = a[i];
		int prev_pos = a[i - 1];
		int clearance_minus = 0;
		for (auto j : list[i - 1]) {
			while (head < (int) list[i].size() && list[i][head] < j) {
				if (prev_pos < cur_pos - 1 && *std::min_element(clearance.begin(), clearance.end()) - clearance_minus > 2) { // -1
					cur_pos--;
					clearance_minus += 2;
				} else cur_pos++;
				pos[list[i][head]] = cur_pos;
				head++;
			}
			clearance.pop_front(); 
			prev_pos = pos[j];
		}
		while (head < (int) list[i].size()) {
			if (prev_pos < cur_pos - 1) cur_pos--;
			else cur_pos++;
			pos[list[i][head]] = cur_pos;
			head++;
		}
	}
	assert(!std::count(pos, pos + q, -2));
	for (int i = 0; i < q; i++) if (pos[i] >= n) return false;
	return true;
}

int main() {
	int n = ri(), m = ri();
	int a[m];
	for (int i = 0; i < m; i++) a[i] = ri() - 1;
	int q = ri();
	int b[q];
	for (int i = 0; i < q; i++) b[i] = ri() - 1;
	std::cout << (solve(n, m, a, q, b) ? "YES" : "NO") << std::endl;
	
	return 0;
}
0