結果
問題 | No.1777 万華鏡美術館 |
ユーザー | kiyoshi0205 |
提出日時 | 2021-12-06 11:44:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 601 bytes |
コンパイル時間 | 2,713 ms |
コンパイル使用メモリ | 193,004 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 08:53:22 |
合計ジャッジ時間 | 4,275 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | RE | - |
ソースコード
#pragma GCC target("avx") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include<bits/stdc++.h> using namespace std; int main(){ int i,N,M; cin>>N>>M; vector<int> ver; set<pair<int,int>>edge; for(int i=0;i<M;++i){ int u,v; cin>>u>>v; --u;--v; edge.emplace(u,v); ver.emplace_back(u); ver.emplace_back(v); } sort(ver.begin(),ver.end()); ver.erase(unique(ver.begin(),ver.end()),ver.end()); for(size_t i=0;i<ver.size();++i){ if(!edge.count(minmax(ver[i],ver[(i+1)%ver.size()]))){ puts("5"); return 0; } } assert(false); }