結果

問題 No.1055 牛歩
ユーザー QCFiumQCFium
提出日時 2019-11-02 11:58:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,917 bytes
コンパイル時間 2,985 ms
コンパイル使用メモリ 192,820 KB
実行使用メモリ 16,352 KB
最終ジャッジ日時 2024-11-27 23:55:19
合計ジャッジ時間 17,888 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
16,000 KB
testcase_01 AC 37 ms
16,352 KB
testcase_02 AC 23 ms
11,392 KB
testcase_03 AC 22 ms
12,128 KB
testcase_04 AC 22 ms
11,264 KB
testcase_05 AC 23 ms
12,128 KB
testcase_06 AC 41 ms
11,520 KB
testcase_07 AC 39 ms
12,384 KB
testcase_08 AC 39 ms
11,520 KB
testcase_09 AC 32 ms
11,620 KB
testcase_10 AC 32 ms
11,264 KB
testcase_11 AC 32 ms
5,760 KB
testcase_12 AC 20 ms
6,400 KB
testcase_13 AC 20 ms
6,400 KB
testcase_14 AC 32 ms
5,632 KB
testcase_15 AC 32 ms
5,760 KB
testcase_16 AC 22 ms
5,504 KB
testcase_17 AC 29 ms
5,504 KB
testcase_18 AC 29 ms
5,504 KB
testcase_19 AC 27 ms
5,504 KB
testcase_20 AC 29 ms
5,888 KB
testcase_21 AC 40 ms
5,760 KB
testcase_22 AC 49 ms
6,144 KB
testcase_23 AC 49 ms
6,016 KB
testcase_24 AC 46 ms
6,144 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 6 ms
5,248 KB
testcase_32 AC 5 ms
5,248 KB
testcase_33 AC 6 ms
5,248 KB
testcase_34 AC 6 ms
5,248 KB
testcase_35 AC 7 ms
5,248 KB
testcase_36 AC 7 ms
5,248 KB
testcase_37 AC 5 ms
5,248 KB
testcase_38 AC 6 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 3 ms
5,248 KB
testcase_45 AC 2 ms
5,248 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 2 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 1 ms
5,248 KB
testcase_52 AC 1 ms
5,248 KB
testcase_53 AC 1 ms
5,248 KB
testcase_54 AC 1 ms
5,248 KB
testcase_55 AC 1 ms
5,248 KB
testcase_56 AC 2 ms
5,248 KB
testcase_57 AC 2 ms
5,248 KB
testcase_58 AC 2 ms
5,248 KB
testcase_59 AC 2 ms
5,248 KB
testcase_60 AC 2 ms
5,248 KB
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 2 ms
5,248 KB
testcase_64 AC 2 ms
5,248 KB
testcase_65 AC 2 ms
5,248 KB
testcase_66 AC 1 ms
5,248 KB
testcase_67 AC 2 ms
5,248 KB
testcase_68 AC 1 ms
5,248 KB
testcase_69 AC 2 ms
5,248 KB
testcase_70 AC 2 ms
5,248 KB
testcase_71 AC 2 ms
5,248 KB
testcase_72 AC 2 ms
5,248 KB
testcase_73 AC 2 ms
5,248 KB
testcase_74 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

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