結果

問題 No.1477 Lamps on Graph
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-04-22 09:22:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 1,357 bytes
コンパイル時間 1,510 ms
コンパイル使用メモリ 123,064 KB
実行使用メモリ 13,748 KB
最終ジャッジ日時 2024-11-06 23:29:42
合計ジャッジ時間 9,907 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 125 ms
8,016 KB
testcase_13 AC 132 ms
8,052 KB
testcase_14 AC 155 ms
8,928 KB
testcase_15 AC 60 ms
5,888 KB
testcase_16 AC 40 ms
5,248 KB
testcase_17 AC 44 ms
5,248 KB
testcase_18 AC 184 ms
9,708 KB
testcase_19 AC 116 ms
7,796 KB
testcase_20 AC 45 ms
5,248 KB
testcase_21 AC 158 ms
8,600 KB
testcase_22 AC 27 ms
5,248 KB
testcase_23 AC 82 ms
6,528 KB
testcase_24 AC 198 ms
10,180 KB
testcase_25 AC 60 ms
5,632 KB
testcase_26 AC 186 ms
9,760 KB
testcase_27 AC 69 ms
6,272 KB
testcase_28 AC 89 ms
7,040 KB
testcase_29 AC 92 ms
6,780 KB
testcase_30 AC 102 ms
6,512 KB
testcase_31 AC 62 ms
5,596 KB
testcase_32 AC 301 ms
13,748 KB
testcase_33 AC 247 ms
12,976 KB
testcase_34 AC 270 ms
13,744 KB
testcase_35 AC 252 ms
12,420 KB
testcase_36 AC 242 ms
12,036 KB
testcase_37 AC 182 ms
10,880 KB
testcase_38 AC 206 ms
11,524 KB
testcase_39 AC 237 ms
11,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;

template<typename T> using pq = priority_queue<T, vector<T>, greater<T>>;
 
int main(){
 
    long long N, M, A, B, C, start, K;
    long long from, alt, d;
    cin >> N >> M;
    pq<pair<long long, long long>> que;
    vector<long long> num(N), ans;
    deque<bool> color(N);
    for (int i=0; i<N; i++) cin >> num[i];
    vector<vector<long long>> E(N);
 
    for (int i=0; i < M; i++){
        cin >> A >> B;
        A--; B--;
        E[A].push_back(B);
        E[B].push_back(A);
    }

    cin >> K;
    for (int i=0; i<K; i++){
        cin >> B; B--;
        color[B] = 1;
        que.push({num[B], B});
    }
 
    while(!que.empty()){
        tie(d, from) = que.top();
        que.pop();
        if (color[from] == 0) continue;
        color[from] = 0;
        ans.push_back(from+1);
        for (auto to : E[from]){
            if (num[to] > num[from]){
                color[to] ^= 1;
                if (color[to] == 1){
                    que.push({num[to], to});
                }
            }
        }
    }

    cout << ans.size() << endl;
    for (auto x : ans) cout << x << endl;
 
    return 0;
}
0