結果

問題 No.1477 Lamps on Graph
ユーザー kappybarkappybar
提出日時 2021-04-16 22:22:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,335 bytes
コンパイル時間 1,813 ms
コンパイル使用メモリ 174,992 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-03 02:21:29
合計ジャッジ時間 8,506 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,376 KB
testcase_05 WA -
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 WA -
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 121 ms
6,784 KB
testcase_13 AC 126 ms
6,528 KB
testcase_14 AC 150 ms
7,296 KB
testcase_15 AC 59 ms
5,376 KB
testcase_16 AC 43 ms
5,376 KB
testcase_17 AC 46 ms
5,376 KB
testcase_18 AC 170 ms
7,680 KB
testcase_19 AC 112 ms
6,912 KB
testcase_20 AC 42 ms
5,376 KB
testcase_21 AC 150 ms
6,940 KB
testcase_22 AC 25 ms
5,376 KB
testcase_23 AC 78 ms
5,376 KB
testcase_24 AC 184 ms
8,064 KB
testcase_25 AC 57 ms
5,376 KB
testcase_26 AC 170 ms
8,320 KB
testcase_27 AC 68 ms
5,504 KB
testcase_28 AC 88 ms
6,400 KB
testcase_29 AC 86 ms
5,632 KB
testcase_30 AC 100 ms
5,376 KB
testcase_31 AC 61 ms
5,376 KB
testcase_32 AC 272 ms
11,008 KB
testcase_33 AC 226 ms
10,752 KB
testcase_34 WA -
testcase_35 AC 237 ms
10,368 KB
testcase_36 AC 231 ms
10,368 KB
testcase_37 AC 182 ms
10,240 KB
testcase_38 AC 197 ms
10,368 KB
testcase_39 AC 224 ms
10,344 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]){
                on[j] = 1 - on[j];
            }
        }
    }
    cout << ans << endl;
    for(int i:res) cout << i+1 << endl;

    return 0;
}
0