結果

問題 No.1477 Lamps on Graph
ユーザー akaneakane
提出日時 2021-04-16 20:55:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 1,179 bytes
コンパイル時間 2,248 ms
コンパイル使用メモリ 210,988 KB
実行使用メモリ 11,744 KB
最終ジャッジ日時 2024-07-02 23:37:33
合計ジャッジ時間 7,411 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 76 ms
6,912 KB
testcase_13 AC 84 ms
6,784 KB
testcase_14 AC 91 ms
7,296 KB
testcase_15 AC 34 ms
5,376 KB
testcase_16 AC 24 ms
5,376 KB
testcase_17 AC 29 ms
5,376 KB
testcase_18 AC 133 ms
8,104 KB
testcase_19 AC 76 ms
6,912 KB
testcase_20 AC 27 ms
5,376 KB
testcase_21 AC 116 ms
7,384 KB
testcase_22 AC 14 ms
5,376 KB
testcase_23 AC 46 ms
5,504 KB
testcase_24 AC 126 ms
8,232 KB
testcase_25 AC 35 ms
5,376 KB
testcase_26 AC 121 ms
8,540 KB
testcase_27 AC 38 ms
5,376 KB
testcase_28 AC 49 ms
6,272 KB
testcase_29 AC 57 ms
5,888 KB
testcase_30 AC 78 ms
5,592 KB
testcase_31 AC 43 ms
5,376 KB
testcase_32 AC 217 ms
11,612 KB
testcase_33 AC 165 ms
11,224 KB
testcase_34 AC 197 ms
11,744 KB
testcase_35 AC 165 ms
10,688 KB
testcase_36 AC 159 ms
10,556 KB
testcase_37 AC 107 ms
9,984 KB
testcase_38 AC 129 ms
10,240 KB
testcase_39 AC 156 ms
10,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    int N,M; cin>>N>>M;
    vector<int> A(N+1,0);
    vector<int> light(N+1,0);
    rep(i,N){
        int a;
        cin>>a; A[i+1] = -a;
    }
    vector<vector<int>> load(N+1,vector<int>());
    rep(i,M){
        int u,v; cin>>u>>v;
        load[u].push_back(v);
        load[v].push_back(u);
    }

    priority_queue<pair<int,int>> que; //強さ・番号
    int K; cin>>K;
    rep(i,K){
        int B; cin>>B;
        light[B]=1;
        que.push(make_pair(A[B],B));
    }

    vector<int> ans;
    while(que.size()){
        auto x = que.top(); que.pop();
        int a = x.first, b=x.second;
        if(light[b]==0) continue;
        light[b]=0;
        // cerr << a << " " << b  <<endl;
        ans.push_back(b);
        for(int s:load[b]){
            if(A[s]<a){
                light[s] = (light[s]+1)%2;
            }
            if(light[s]){
                que.push(make_pair(A[s],s));
            }
        }
    }

    cout << ans.size() << endl;
    for(int x:ans){
        cout << x << endl;
    }

}
0