結果

問題 No.1477 Lamps on Graph
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2021-04-16 21:53:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 1,135 bytes
コンパイル時間 1,805 ms
コンパイル使用メモリ 175,452 KB
実行使用メモリ 11,012 KB
最終ジャッジ日時 2024-07-03 01:33:08
合計ジャッジ時間 7,632 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 109 ms
6,912 KB
testcase_13 AC 113 ms
6,528 KB
testcase_14 AC 131 ms
7,296 KB
testcase_15 AC 54 ms
5,376 KB
testcase_16 AC 38 ms
5,376 KB
testcase_17 AC 42 ms
5,376 KB
testcase_18 AC 162 ms
7,936 KB
testcase_19 AC 107 ms
6,784 KB
testcase_20 AC 37 ms
5,376 KB
testcase_21 AC 148 ms
6,912 KB
testcase_22 AC 23 ms
5,376 KB
testcase_23 AC 72 ms
5,376 KB
testcase_24 AC 162 ms
8,064 KB
testcase_25 AC 52 ms
5,376 KB
testcase_26 AC 150 ms
8,448 KB
testcase_27 AC 61 ms
5,376 KB
testcase_28 AC 78 ms
6,400 KB
testcase_29 AC 80 ms
5,632 KB
testcase_30 AC 90 ms
5,376 KB
testcase_31 AC 56 ms
5,376 KB
testcase_32 AC 254 ms
10,972 KB
testcase_33 AC 206 ms
10,760 KB
testcase_34 AC 234 ms
11,012 KB
testcase_35 AC 212 ms
10,368 KB
testcase_36 AC 202 ms
10,368 KB
testcase_37 AC 150 ms
10,240 KB
testcase_38 AC 177 ms
10,368 KB
testcase_39 AC 205 ms
10,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2021.04.16 21:53:14
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;

int main() {
    int n,m;cin >> n >> m;
    vector<int> a(n);
    vector<int> idx(n);
    iota(idx.begin(), idx.end(),0);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    sort(idx.begin(), idx.end(),[&](int x,int y) {
        return a[x] < a[y];
    });
    vector<vector<int>> g(n);
    for (int i = 0; i < m; i++) {
        int u,v;cin >> u >> v;
        u--;v--;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    int k;cin >> k;
    vector<int> b(n,0);
    for (int i = 0; i < k; i++) {
        int t;cin>>t;
        b[--t] = 1;
    }
    vector<int> ans;
    for (int i = 0; i < n; i++) {
        if (b[idx[i]] == 0) continue;
        b[idx[i]] = 0;
        ans.push_back(idx[i]+1);
        for(int v : g[idx[i]]) {
            if (a[v] <= a[idx[i]]) continue;
            b[v] = 1 - b[v];
        }
    }
    
    
    cout << ans.size() << endl;
    for (int i = 0; i < ans.size(); i++) {
        cout << ans[i] << endl;
    }
    return 0;
}
0