結果

問題 No.1477 Lamps on Graph
ユーザー outlineoutline
提出日時 2021-04-18 00:18:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 1,908 bytes
コンパイル時間 1,664 ms
コンパイル使用メモリ 146,944 KB
実行使用メモリ 15,384 KB
最終ジャッジ日時 2024-07-04 04:22:18
合計ジャッジ時間 6,120 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 53 ms
7,296 KB
testcase_13 AC 61 ms
8,320 KB
testcase_14 AC 66 ms
8,192 KB
testcase_15 AC 26 ms
6,940 KB
testcase_16 AC 14 ms
6,944 KB
testcase_17 AC 16 ms
6,944 KB
testcase_18 AC 64 ms
10,752 KB
testcase_19 AC 47 ms
7,936 KB
testcase_20 AC 20 ms
6,944 KB
testcase_21 AC 58 ms
9,728 KB
testcase_22 AC 13 ms
6,940 KB
testcase_23 AC 35 ms
6,940 KB
testcase_24 AC 92 ms
10,496 KB
testcase_25 AC 27 ms
6,944 KB
testcase_26 AC 80 ms
10,368 KB
testcase_27 AC 28 ms
6,940 KB
testcase_28 AC 33 ms
6,940 KB
testcase_29 AC 43 ms
6,940 KB
testcase_30 AC 32 ms
7,168 KB
testcase_31 AC 21 ms
6,944 KB
testcase_32 AC 117 ms
15,384 KB
testcase_33 AC 116 ms
15,000 KB
testcase_34 AC 79 ms
14,488 KB
testcase_35 AC 126 ms
13,056 KB
testcase_36 AC 111 ms
12,544 KB
testcase_37 AC 69 ms
10,496 KB
testcase_38 AC 87 ms
11,136 KB
testcase_39 AC 110 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <queue>
#include <string>
#include <map>
#include <set>
#include <stack>
#include <tuple>
#include <deque>
#include <array>
#include <numeric>
#include <bitset>
#include <iomanip>
#include <cassert>
#include <chrono>
#include <random>
#include <limits>
#include <iterator>
#include <functional>
#include <sstream>
#include <fstream>
#include <complex>
#include <cstring>
#include <unordered_map>
#include <unordered_set>
using namespace std;

using ll = long long;
constexpr int INF = 1001001001;
constexpr int mod = 1000000007;
// constexpr int mod = 998244353;

template<class T>
inline bool chmax(T& x, T y){
    if(x < y){
        x = y;
        return true;
    }
    return false;
}
template<class T>
inline bool chmin(T& x, T y){
    if(x > y){
        x = y;
        return true;
    }
    return false;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int N, M, K, B;
    cin >> N >> M;
    vector<int> A(N);
    for(int i = 0; i < N; ++i)  cin >> A[i];
    vector<vector<int>> g(N);
    for(int i = 0; i < M; ++i){
        int u, v;
        cin >> u >> v;
        --u, --v;
        g[u].emplace_back(v);
        g[v].emplace_back(u);
    }
    cin >> K;
    set<pair<int, int>> st;
    vector<int> color(N);
    for(int i = 0; i < K; ++i){
        cin >> B;
        --B;
        color[B] = 1;
        st.emplace(A[B], B);
    }
    vector<int> ans;
    while(st.size()){
        auto [val, u] = *st.begin();
        st.erase(st.begin());
        color[u] ^= 1;
        ans.emplace_back(u);
        for(int v : g[u]){
            if(A[u] >= A[v])    continue;
            if(color[v])    st.erase({A[v], v});
            else    st.emplace(A[v], v);
            color[v] ^= 1;
        }
    }
    cout << ans.size() << '\n';
    for(int v : ans)    cout << v + 1 << '\n';

    return 0;
}
0