結果

問題 No.1477 Lamps on Graph
ユーザー umezoumezo
提出日時 2021-04-16 22:57:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 846 bytes
コンパイル時間 2,438 ms
コンパイル使用メモリ 210,272 KB
実行使用メモリ 11,544 KB
最終ジャッジ日時 2024-07-03 03:23:41
合計ジャッジ時間 8,560 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,760 KB
testcase_01 AC 4 ms
5,760 KB
testcase_02 AC 4 ms
5,632 KB
testcase_03 AC 4 ms
5,888 KB
testcase_04 AC 4 ms
5,760 KB
testcase_05 AC 4 ms
5,760 KB
testcase_06 AC 4 ms
5,888 KB
testcase_07 AC 4 ms
5,760 KB
testcase_08 AC 4 ms
5,760 KB
testcase_09 AC 4 ms
5,760 KB
testcase_10 AC 4 ms
5,888 KB
testcase_11 AC 4 ms
5,760 KB
testcase_12 AC 123 ms
8,320 KB
testcase_13 AC 124 ms
7,936 KB
testcase_14 AC 151 ms
8,704 KB
testcase_15 AC 61 ms
7,040 KB
testcase_16 AC 44 ms
6,784 KB
testcase_17 AC 47 ms
6,792 KB
testcase_18 AC 173 ms
8,448 KB
testcase_19 AC 116 ms
8,192 KB
testcase_20 AC 42 ms
6,656 KB
testcase_21 AC 150 ms
7,808 KB
testcase_22 AC 27 ms
6,272 KB
testcase_23 AC 79 ms
7,424 KB
testcase_24 AC 182 ms
9,088 KB
testcase_25 AC 59 ms
6,912 KB
testcase_26 AC 173 ms
9,216 KB
testcase_27 AC 71 ms
7,360 KB
testcase_28 AC 90 ms
7,808 KB
testcase_29 AC 89 ms
7,496 KB
testcase_30 AC 97 ms
7,040 KB
testcase_31 AC 61 ms
6,784 KB
testcase_32 AC 270 ms
11,412 KB
testcase_33 AC 220 ms
11,156 KB
testcase_34 AC 257 ms
11,544 KB
testcase_35 AC 237 ms
10,752 KB
testcase_36 AC 231 ms
10,752 KB
testcase_37 AC 180 ms
10,624 KB
testcase_38 AC 198 ms
10,752 KB
testcase_39 AC 227 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;

#include <bits/stdc++.h>
using namespace std;

vector<int> G[100100];
int B[100100];

int main(){
  int n,m;
  cin>>n>>m;
  vector<pair<int,int>> A(n);
  vector<int> AA(n);
  rep(i,n){
    int a;
    cin>>a;
    AA[i]=a;
    A[i]={a,i};
  }
  sort(ALL(A));
  rep(i,m){
    int u,v;
    cin>>u>>v;
    u--,v--;
    G[u].push_back(v);
    G[v].push_back(u);
  }
  int k;
  cin>>k;
  rep(i,k){
    int b;
    cin>>b;
    b--;
    B[b]=1;
  }
  vector<int> C;
  rep(i,n){
    int ta=A[i].first;
    int ti=A[i].second;
    if(B[ti]==1){
      C.push_back(ti+1);
      B[ti]=0;
      for(auto x:G[ti]){
        if(AA[x]>ta) B[x]=1-B[x];
      }
    }
  }
  cout<<(int)C.size()<<endl;
  rep(i,(int)C.size()) cout<<C[i]<<endl;
  
  return 0;
}
0