結果
問題 | No.870 無敵囲い |
ユーザー | tone |
提出日時 | 2019-08-31 15:53:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 300 ms |
コード長 | 892 bytes |
コンパイル時間 | 634 ms |
コンパイル使用メモリ | 76,748 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-29 06:21:42 |
合計ジャッジ時間 | 1,154 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <deque> #include <queue> #include <algorithm> #include <set> #include <map> #define vv(a, b, c, d) vector<vector<d> >(a, vector<d>(b, c)) #define vvi std::vector<std::vector<int> > #define vvl std::vector<std::vector<ll> > #define MODs 1000000007; typedef long long int ll; using namespace std; int main(int argc, char const *argv[]) { int N, xb, yb, xa, ya; pair<int, int> A{2, 8}, B{3,9}, C{7,9}; std::cin >> N; for(int i=0;i<N;i++) { std::cin >> xb >> yb >> xa >> ya; if(xb==A.first&&yb==A.second) A.first = xa, A.second=ya; if(xb==B.first&&yb==B.second) B.first = xa, B.second=ya; if(xb==C.first&&yb==C.second) C.first = xa, C.second=ya; } if(A.first==5&&A.second==8&&B.first==4&&B.second==8&&C.first==6&&C.second==8) std::cout << "YES" << '\n'; else std::cout << "NO" << '\n'; return 0; }