結果

問題 No.1055 牛歩
ユーザー QCFiumQCFium
提出日時 2019-09-18 22:19:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,980 bytes
コンパイル時間 3,015 ms
コンパイル使用メモリ 176,016 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-05-05 22:30:29
合計ジャッジ時間 6,589 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

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

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<std::pair<int, 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;
				while (clearance.size() && clearance.back().second >= cur_clearance) clearance.pop_back();
				clearance.push_back({j, 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 && (!clearance.size() || clearance.front().second - clearance_minus > 2)) { // -1
					cur_pos--;
					clearance_minus += 2;
				} else cur_pos++;
				pos[list[i][head]] = cur_pos;
				head++;
			}
			if (clearance.size() && clearance.front().first == j) 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