結果

問題 No.1477 Lamps on Graph
ユーザー chocoruskchocorusk
提出日時 2021-04-16 22:15:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 1,404 bytes
コンパイル時間 3,225 ms
コンパイル使用メモリ 191,664 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-07-03 02:09:29
合計ジャッジ時間 8,953 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,016 KB
testcase_01 AC 3 ms
5,888 KB
testcase_02 AC 3 ms
6,016 KB
testcase_03 AC 4 ms
5,760 KB
testcase_04 AC 4 ms
5,760 KB
testcase_05 AC 3 ms
6,016 KB
testcase_06 AC 3 ms
6,016 KB
testcase_07 AC 3 ms
5,888 KB
testcase_08 AC 4 ms
6,016 KB
testcase_09 AC 4 ms
6,016 KB
testcase_10 AC 4 ms
6,016 KB
testcase_11 AC 4 ms
5,888 KB
testcase_12 AC 108 ms
7,480 KB
testcase_13 AC 104 ms
7,548 KB
testcase_14 AC 125 ms
7,808 KB
testcase_15 AC 50 ms
6,784 KB
testcase_16 AC 38 ms
6,784 KB
testcase_17 AC 40 ms
6,784 KB
testcase_18 AC 158 ms
7,680 KB
testcase_19 AC 103 ms
7,552 KB
testcase_20 AC 39 ms
6,400 KB
testcase_21 AC 141 ms
7,296 KB
testcase_22 AC 23 ms
6,272 KB
testcase_23 AC 68 ms
6,912 KB
testcase_24 AC 157 ms
8,192 KB
testcase_25 AC 52 ms
6,656 KB
testcase_26 AC 150 ms
8,192 KB
testcase_27 AC 61 ms
6,912 KB
testcase_28 AC 75 ms
7,280 KB
testcase_29 AC 76 ms
7,040 KB
testcase_30 AC 90 ms
6,656 KB
testcase_31 AC 56 ms
6,656 KB
testcase_32 AC 246 ms
10,496 KB
testcase_33 AC 207 ms
9,344 KB
testcase_34 AC 242 ms
7,424 KB
testcase_35 AC 205 ms
9,216 KB
testcase_36 AC 193 ms
9,088 KB
testcase_37 AC 154 ms
9,088 KB
testcase_38 AC 171 ms
9,088 KB
testcase_39 AC 194 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
vector<int> g[100010];
int b[100010];
vector<int> ans;
int main()
{
    int n, m; cin>>n>>m;
    int a[100010];
    for(int i=0; i<n; i++) cin>>a[i];
    for(int i=0; i<m; i++){
        int u, v; cin>>u>>v;
        u--; v--;
        if(a[u]<a[v]) g[u].push_back(v);
        else if(a[v]<a[u]) g[v].push_back(u);
    }
    int k; cin>>k;
    for(int i=0; i<k; i++){
        int x; cin>>x; x--;
        b[x]=1;
    }
    vector<int> ind(n);
    for(int i=0; i<n; i++) ind[i]=i;
    sort(ind.begin(), ind.end(), [&](int i, int j){ return a[i]<a[j];});
    for(auto i:ind){
        if(b[i]){
            b[i]^=1;
            for(auto j:g[i]){
                b[j]^=1;
            }
            ans.push_back(i+1);
        }
    }
    cout<<ans.size()<<endl;
    for(auto x:ans) cout<<x<<endl;
    return 0;
}
0