結果

問題 No.870 無敵囲い
ユーザー pekempeypekempey
提出日時 2019-08-30 21:24:40
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 300 ms
コード長 624 bytes
コンパイル時間 1,377 ms
コンパイル使用メモリ 167,768 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-29 06:12:54
合計ジャッジ時間 2,024 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i, n) for (int i = 0; i < (n); i++)
#define repr(i, n) for (int i = (n) - 1; i >= 0; i--)
#define range(a) a.begin(), a.end()

using namespace std;
using ll = long long;

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  cout << fixed << setprecision(15);
  int n; cin >> n;
  static int a[10][10];
  a[2][8] = 1;
  a[3][9] = 2;
  a[7][9] = 3;
  rep(i, n) {
    int x1, y1, x2, y2; cin >> x1 >> y1 >> x2 >> y2;
    swap(a[x1][y1], a[x2][y2]);
  }
  if (a[5][8] == 1 && a[4][8] == 2 && a[6][8] == 3) {
    cout << "YES" << endl;
  } else {
    cout << "NO" << endl;
  }
}
0