結果

問題 No.1477 Lamps on Graph
ユーザー jutamajutama
提出日時 2021-04-16 20:26:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 1,772 bytes
コンパイル時間 3,308 ms
コンパイル使用メモリ 168,204 KB
実行使用メモリ 11,828 KB
最終ジャッジ日時 2024-07-02 22:37:20
合計ジャッジ時間 7,589 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 67 ms
7,296 KB
testcase_13 AC 71 ms
6,944 KB
testcase_14 AC 75 ms
7,808 KB
testcase_15 AC 29 ms
6,940 KB
testcase_16 AC 23 ms
6,940 KB
testcase_17 AC 27 ms
6,940 KB
testcase_18 AC 126 ms
8,448 KB
testcase_19 AC 62 ms
7,552 KB
testcase_20 AC 21 ms
6,940 KB
testcase_21 AC 97 ms
7,552 KB
testcase_22 AC 11 ms
6,940 KB
testcase_23 AC 37 ms
6,944 KB
testcase_24 AC 97 ms
8,576 KB
testcase_25 AC 28 ms
6,940 KB
testcase_26 AC 99 ms
9,088 KB
testcase_27 AC 35 ms
6,940 KB
testcase_28 AC 51 ms
6,940 KB
testcase_29 AC 53 ms
6,940 KB
testcase_30 AC 73 ms
6,940 KB
testcase_31 AC 39 ms
6,940 KB
testcase_32 AC 182 ms
11,704 KB
testcase_33 AC 131 ms
11,708 KB
testcase_34 AC 164 ms
11,828 KB
testcase_35 AC 135 ms
11,136 KB
testcase_36 AC 123 ms
11,136 KB
testcase_37 AC 92 ms
11,008 KB
testcase_38 AC 108 ms
11,264 KB
testcase_39 AC 149 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bitset>
#include <fstream>
#include <functional>
#include <iostream>
#include <map>
#include <math.h>
#include <queue>
#include <set>
#include <stack>
#include <stdio.h>
#include <stdlib.h>
#include <unordered_map>
#include <unordered_set>
#include <vector>
using namespace std;
using namespace atcoder;

//* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ *//

void input() {
    
    
}


void solve() {
    
    using pii = pair<int, int>;
    
    int N, M; cin >> N >> M;
    vector<pii> A(N), Ar(N);
    vector<vector<int>> edges(N);
    vector<int> B(N);
    
    for(int i = 0; i < N; i++) {
        int a; cin >> a;
        A[i] = {i, a};
        Ar[i] = {a, i};
    }
    sort(Ar.begin(), Ar.end());
    
    for(int i = 0; i < M; i++) {
        int u, v; cin >> u >> v;
        u--; v--;
        edges[u].push_back(v);
        edges[v].push_back(u);
    }
    int K; cin >> K;
    for(int i = 0; i < K; i++) {
        int b; cin >> b;
        b--;
        B[b] = 1;
    }
    
    vector<int> ans;
    for(int i = 0; i < N; i++) {
        int Ai = Ar[i].first;
        int ni = Ar[i].second;
        
        if(B[ni]) {
            ans.push_back(ni);
            
            for(auto e : edges[ni]) {
                if(Ai < A[e].second) {
                    B[e] ^= 1;
                }
            }
        }
    }
    
    int Z = (int)ans.size();
    cout << Z << endl;
    for(int i = 0; i < Z; i++) {
        cout << ans[i]+1 << endl;
    }
    
    
    
    
    
    
}

//* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ *//

int main() {
    
    std::ifstream in("input.txt");
    std::cin.rdbuf(in.rdbuf());
    std::cin.tie(0);
    ios::sync_with_stdio(false);
    
    input();
    solve();
    
    return 0;
}
0