結果
問題 | No.870 無敵囲い |
ユーザー | onakaT_Titai |
提出日時 | 2019-08-30 21:29:32 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 300 ms |
コード長 | 712 bytes |
コンパイル時間 | 1,574 ms |
コンパイル使用メモリ | 169,412 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-29 06:14:49 |
合計ジャッジ時間 | 2,282 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 18 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(void){ vector<pair<int, int>> crt = {{2, 8}, {3, 9}, {7, 9}}; vector<pair<int, int>> goal = {{5, 8}, {4, 8}, {6, 8}}; int N; cin >> N; for (int i = 0; i < N; i++) { int x1, y1; cin >> x1 >> y1; int x2, y2; cin >> x2 >> y2; for (int j = 0; j < 3; j++) { if (crt[j].first == x1 && crt[j].second == y1) { crt[j] = {x2, y2}; break; } } } for (int i = 0; i < 3; i++) { if (crt[i].first != goal[i].first || crt[i].second != goal[i].second) { cout << "NO" << endl; return 0; } } cout << "YES" << endl; }