結果

問題 No.1477 Lamps on Graph
ユーザー monnumonnu
提出日時 2021-04-16 20:41:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 1,018 bytes
コンパイル時間 1,747 ms
コンパイル使用メモリ 177,876 KB
実行使用メモリ 11,412 KB
最終ジャッジ日時 2024-07-02 23:10:26
合計ジャッジ時間 7,879 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 120 ms
7,040 KB
testcase_13 AC 124 ms
6,656 KB
testcase_14 AC 148 ms
7,552 KB
testcase_15 AC 60 ms
5,376 KB
testcase_16 AC 43 ms
5,376 KB
testcase_17 AC 46 ms
5,376 KB
testcase_18 AC 173 ms
8,192 KB
testcase_19 AC 114 ms
7,168 KB
testcase_20 AC 41 ms
5,376 KB
testcase_21 AC 148 ms
7,296 KB
testcase_22 AC 25 ms
5,376 KB
testcase_23 AC 78 ms
5,504 KB
testcase_24 AC 179 ms
8,320 KB
testcase_25 AC 57 ms
5,376 KB
testcase_26 AC 169 ms
8,704 KB
testcase_27 AC 71 ms
5,504 KB
testcase_28 AC 87 ms
6,528 KB
testcase_29 AC 87 ms
5,888 KB
testcase_30 AC 97 ms
5,632 KB
testcase_31 AC 60 ms
5,376 KB
testcase_32 AC 268 ms
11,412 KB
testcase_33 AC 223 ms
11,152 KB
testcase_34 AC 258 ms
11,408 KB
testcase_35 AC 235 ms
10,752 KB
testcase_36 AC 228 ms
10,752 KB
testcase_37 AC 180 ms
10,624 KB
testcase_38 AC 199 ms
10,752 KB
testcase_39 AC 224 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
//#include <atcoder/all>
//using namespace atcoder;
using ll=long long;
using Graph=vector<vector<int>>;
#define MAX 200003
#define MOD 998244353
#define INF 1000000000

int main(){
  int N,M;
  cin>>N>>M;
  vector<int> A(N);
  vector<pair<int,int>> order(N);
  for(int i=0;i<N;i++){
    cin>>A[i];
    order[i].first=A[i];
    order[i].second=i;
  }
  sort(order.begin(),order.end());
  Graph G(N);
  for(int i=0;i<M;i++){
    int u,v;
    cin>>u>>v;
    u--;v--;
    G[u].push_back(v);
    G[v].push_back(u);
  }
  int K;
  cin>>K;
  vector<int> light(N,0);
  for(int i=0;i<K;i++){
    int B;
    cin>>B;
    B--;
    light[B]=1;
  }

  vector<int> ans;
  for(int i=0;i<N;i++){
    int v=order[i].second;
    if(light[v]==1){
      ans.push_back(v);
      light[v]=0;
      for(auto nv:G[v]){
        if(A[nv]>A[v]){
          light[nv]=1-light[nv];
        }
      }
    }
  }

  cout<<ans.size()<<endl;
  for(int i=0;i<ans.size();i++){
    cout<<ans[i]+1<<endl;
  }
}
0