結果
問題 | No.870 無敵囲い |
ユーザー | @abcde |
提出日時 | 2019-08-30 21:34:16 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 300 ms |
コード長 | 1,149 bytes |
コンパイル時間 | 1,454 ms |
コンパイル使用メモリ | 168,048 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-29 06:15:48 |
合計ジャッジ時間 | 1,923 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 18 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ // 1. 入力情報取得. int N; scanf("%d", &N); pair<int, int> a = {2, 8}, b = {3, 9}, c = {7, 9}; for(int i = 0; i < N; i++){ int xb, yb, xa, ya; scanf("%d %d %d %d", &xb, &yb, &xa, &ya); // 座標更新(駒A). if(xb == a.first && yb == a.second){ a.first = xa; a.second = ya; continue; } // 座標更新(駒B). if(xb == b.first && yb == b.second){ b.first = xa; b.second = ya; continue; } // 座標更新(駒C). if(xb == c.first && yb == c.second){ c.first = xa; c.second = ya; continue; } } // 2. 移動後をチェック. bool ans = true; // 駒A. if(a.first != 5 || a.second != 8) ans = false; // 駒B. if(b.first != 4 || b.second != 8) ans = false; // 駒C. if(c.first != 6 || c.second != 8) ans = false; // 3. 後処理. if(ans) printf("%s\n", "YES"); else printf("%s\n", "NO"); return 0; }