結果
問題 | No.1777 万華鏡美術館 |
ユーザー | 👑 Nachia |
提出日時 | 2021-12-06 15:53:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,183 bytes |
コンパイル時間 | 945 ms |
コンパイル使用メモリ | 92,448 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-07 09:19:33 |
合計ジャッジ時間 | 1,299 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,944 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <set> using namespace std; using i32 = int32_t; using u32 = uint32_t; using i64 = int64_t; using u64 = uint64_t; #define rep(i,n) for(int i=0; i<(n); i++) int main(){ int N,M; cin >> N >> M; int ans = 4; if(M == 0) ans += N % 2; else if(M == 1) ans = 5; else rep(t,1){ set<pair<int,int>> uv; set<int> u_v; rep(i,M){ int u,v; cin >> u >> v; u--; v--; uv.insert(make_pair(u,v)); u_v.insert(u); u_v.insert(v); } vector<int> uvvec(u_v.begin(), u_v.end()); if(M != uvvec.size()){ ans = 5; break; } rep(i,M-1) if(0 == uv.count({ uvvec[i],uvvec[i+1] })){ ans = 5; break; } if(!uv.count({ uvvec.front(), uvvec.back() })){ ans = 5; break; } rep(i,M-1) if((uvvec[i+1] - uvvec[i]) % 2 == 0){ ans = 5; break; } if((uvvec.front() + N - uvvec.back()) % 2 == 0){ ans = 5; break; } } cout << ans << endl; return 0; } struct ios_do_not_sync { ios_do_not_sync() { ios::sync_with_stdio(false); cin.tie(nullptr); } } ios_do_not_sync_instance;