結果
問題 | No.1563 Same Degree |
ユーザー | blackyuki |
提出日時 | 2021-04-14 21:59:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 577 bytes |
コンパイル時間 | 2,148 ms |
コンパイル使用メモリ | 207,736 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-25 09:52:52 |
合計ジャッジ時間 | 4,346 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef pair<int,int> P; int main(){ int n,m;cin>>n>>m; set<P> al; std::vector<int> cnt(n); for(int i=0;i<m;i++){ int a,b;cin>>a>>b; assert(1<=a&&a<=n); assert(1<=b&&b<=n); assert(a!=b); al.insert(P(min(a,b),max(a,b))); cnt[a-1]++;cnt[b-1]++; } assert(al.size()==m); vector<int> cnt2(n); for(int i=0;i<n;i++)cnt2[cnt[i]]++; for(int i=0;i<n;i++){ if(cnt2[i]>1){ cout<<"Yes"<<endl;return 0; } } cout<<"No"<<endl; }