結果

問題 No.629 グラフの中に眠る門松列
ユーザー SSRSSSRS
提出日時 2020-11-19 17:53:21
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 5 ms / 4,000 ms
コード長 703 bytes
コンパイル時間 1,670 ms
コンパイル使用メモリ 179,204 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-23 10:08:37
合計ジャッジ時間 3,072 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 6
other AC * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, M;
  cin >> N >> M;
  vector<int> a(N);
  for (int i = 0; i < N; i++){
    cin >> a[i];
  }
  vector<vector<int>> E(N);
  for (int i = 0; i < M; i++){
    int u, v;
    cin >> u >> v;
    u--;
    v--;
    E[u].push_back(v);
    E[v].push_back(u);
  }
  vector<set<int>> st1(N), st2(N);
  for (int i = 0; i < N; i++){
    for (int j : E[i]){
      if (a[j] < a[i]){
        st1[i].insert(a[j]);
      }
      if (a[j] > a[i]){
        st2[i].insert(a[j]);
      }
    }
  }
  for (int i = 0; i < N; i++){
    if (st1[i].size() >= 2 || st2[i].size() >= 2){
      cout << "YES" << endl;
      return 0;
    }
  }
  cout << "NO" << endl;
}
0