結果

問題 No.1477 Lamps on Graph
ユーザー kappybarkappybar
提出日時 2021-04-16 22:24:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 1,351 bytes
コンパイル時間 1,906 ms
コンパイル使用メモリ 176,272 KB
実行使用メモリ 11,132 KB
最終ジャッジ日時 2024-07-03 02:24:32
合計ジャッジ時間 7,993 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 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 129 ms
6,784 KB
testcase_13 AC 123 ms
6,656 KB
testcase_14 AC 149 ms
7,296 KB
testcase_15 AC 59 ms
5,376 KB
testcase_16 AC 42 ms
5,376 KB
testcase_17 AC 45 ms
5,376 KB
testcase_18 AC 174 ms
7,808 KB
testcase_19 AC 115 ms
7,040 KB
testcase_20 AC 41 ms
5,376 KB
testcase_21 AC 151 ms
6,912 KB
testcase_22 AC 25 ms
5,376 KB
testcase_23 AC 76 ms
5,376 KB
testcase_24 AC 181 ms
8,192 KB
testcase_25 AC 55 ms
5,376 KB
testcase_26 AC 170 ms
8,320 KB
testcase_27 AC 72 ms
5,376 KB
testcase_28 AC 87 ms
6,400 KB
testcase_29 AC 89 ms
5,632 KB
testcase_30 AC 97 ms
5,632 KB
testcase_31 AC 62 ms
5,376 KB
testcase_32 AC 268 ms
11,132 KB
testcase_33 AC 222 ms
10,752 KB
testcase_34 AC 257 ms
11,008 KB
testcase_35 AC 236 ms
10,368 KB
testcase_36 AC 230 ms
10,496 KB
testcase_37 AC 187 ms
10,240 KB
testcase_38 AC 200 ms
10,344 KB
testcase_39 AC 231 ms
10,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define chmin(x,y) x = min((x),(y))
#define chmax(x,y) x = max((x),(y))
#define popcount(x) __builtin_popcount(x)
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
const int INF = 1e9;
const long long LINF = 1e17;
const int MOD = 1000000007;
//const int MOD = 998244353;
const double PI = 3.14159265358979323846;

int main(){
    int n,m;
    cin >> n >> m;
    vector<int> a(n);
    rep(i,n) cin >> a[i];
    vector<vector<int>> G(n);
    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;
    vector<int> on(n,0);
    rep(i,k){
        int b;
        cin >> b;
        --b;
        on[b] = 1;
    }

    vector<int> id(n);
    iota(id.begin(),id.end(),0);
    sort(id.begin(),id.end(),[&](int l,int r){
        return a[l] < a[r];
    });

    int ans = 0;
    vector<int> res;

    for(int _i=0;_i<n;_i++){
        int i = id[_i];
        if(on[i] == 1){
            ++ans;
            on[i] = 0;
            res.push_back(i);
            for(int j:G[i]){
                if(a[j] > a[i]) on[j] = 1 - on[j];
            }
        }
    }
    cout << ans << endl;
    for(int i:res) cout << i+1 << endl;

    return 0;
}
0