結果

問題 No.1563 Same Degree
ユーザー chacoder1chacoder1
提出日時 2021-12-29 10:43:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 2,496 ms
コンパイル使用メモリ 209,664 KB
実行使用メモリ 9,088 KB
最終ジャッジ日時 2024-10-03 16:05:22
合計ジャッジ時間 4,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 42 ms
5,248 KB
testcase_02 AC 41 ms
5,248 KB
testcase_03 AC 40 ms
5,248 KB
testcase_04 AC 42 ms
5,248 KB
testcase_05 AC 41 ms
5,248 KB
testcase_06 AC 43 ms
5,248 KB
testcase_07 AC 43 ms
5,248 KB
testcase_08 AC 43 ms
5,248 KB
testcase_09 AC 43 ms
5,248 KB
testcase_10 AC 43 ms
5,248 KB
testcase_11 AC 23 ms
6,820 KB
testcase_12 AC 46 ms
7,680 KB
testcase_13 AC 125 ms
8,960 KB
testcase_14 AC 147 ms
9,088 KB
testcase_15 AC 96 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0;i<n;i++)

signed main(){   
  int t;cin>>t;
  while(t--){
  int n,m;cin>>n>>m;
  vector<int>edge[n];  
  rep(i,m){
    int u,v;
    cin>>u>>v;
    u--;v--;
    edge[u].push_back(v);
    edge[v].push_back(u);
  }
  map<int,int>mp;
  rep(i,n){
    mp[edge[i].size()]++;
  }
    int flag=1;
  for(auto e:mp){
    if(e.second>1){
      cout<<"Yes"<<endl;
      flag=0;
      break;
    }
  }
    if(flag) cout<<"No"<<endl;
  }
    
  return 0;
}


     
0