結果

問題 No.870 無敵囲い
ユーザー QCFiumQCFium
提出日時 2019-08-31 12:44:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 939 bytes
コンパイル時間 1,322 ms
コンパイル使用メモリ 168,456 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-29 06:21:52
合計ジャッジ時間 2,141 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 RE -
testcase_19 AC 1 ms
5,376 KB
testcase_20 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int ri() {
	int n;
	assert(scanf("%d", &n) == 1);
	return n;
}
int main () {
	int board[10][10];
	int cnt = 0;
	int a = -1, b = -1, c = -1;
	for (int i = 1; i <= 9; i++) {
		for (int j = 1; j <= 9; j++) {
			if (j == 1 || j == 3 || j == 7 || j == 9 || (j == 2 && (i == 2 || i == 8)) || (j == 8 && (i == 2 || i == 8))) {
				board[i][j] = cnt++;
			} else board[i][j] = -1;
			if (i == 2 && j == 8) a = board[i][j];
			if (i == 3 && j == 9) b = board[i][j];
			if (i == 7 && j == 9) c = board[i][j];
		}
	}
	assert(a != -1);
	assert(b != -1);
	assert(c != -1);
	
	int n = ri();
	for (int i = 0; i < n; i++) {
		int x1 = ri();
		int y1 = ri();
		int x2 = ri();
		int y2 = ri();
		assert(board[x1][y1] != -1);
		assert(board[x2][y2] == -1);
		board[x2][y2] = board[x1][y1];
		board[x1][y1] = -1;
	}
	std::cout << (board[5][8] == a && board[4][8] == b && board[6][8] == c ? "YES" : "NO") << std::endl;
	
	return 0;
}
0