結果

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll, ll> P;
typedef pair<ll, P> P3;
typedef pair<P, P> PP;
constexpr ll MOD = ll(1e9 + 7);
constexpr int IINF = INT_MAX;
constexpr ll LLINF = LLONG_MAX;
constexpr int MAX_N = int(1e5) + 5;
constexpr double EPS = 1e-9;
constexpr int di[] = {0, 1, 0, -1}, dj[] = {1, 0, -1, 0};
#define REP(i, n) for (int i = 0; i < n; i++)
#define REPR(i, n) for (int i = n; i >= 0; i--)
#define SORT(v) sort((v).begin(), (v).end())
#define SORTR(v) sort((v).rbegin(), (v).rend())
#define ALL(v) (v).begin(), (v).end()


int main() {
    int n;
    int masu[10][10]{};
    masu[2][8] = 1;
    masu[3][9] = 2;
    masu[7][9] = 3;
    cin >> n;
    for(int i=0;i<n;i++){
        int x1, y1, x2, y2;
        cin >> x1 >> y1 >> x2 >> y2;
        swap(masu[x1][y1], masu[x2][y2]);
    }
    cout << (masu[5][8] == 1 && masu[4][8] == 2 && masu[6][8] == 3 ? "YES" : "NO") << endl;
    return 0;
}
0