結果

問題 No.1477 Lamps on Graph
ユーザー sten_sansten_san
提出日時 2021-07-03 04:17:59
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 1,354 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 29,824 KB
実行使用メモリ 7,956 KB
最終ジャッジ日時 2024-06-29 22:26:37
合計ジャッジ時間 3,949 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 39 ms
6,948 KB
testcase_13 AC 37 ms
6,940 KB
testcase_14 AC 49 ms
6,944 KB
testcase_15 AC 21 ms
6,940 KB
testcase_16 AC 16 ms
6,940 KB
testcase_17 AC 15 ms
6,944 KB
testcase_18 AC 44 ms
6,944 KB
testcase_19 AC 37 ms
6,944 KB
testcase_20 AC 14 ms
6,940 KB
testcase_21 AC 38 ms
6,940 KB
testcase_22 AC 11 ms
6,944 KB
testcase_23 AC 28 ms
6,940 KB
testcase_24 AC 55 ms
6,940 KB
testcase_25 AC 19 ms
6,944 KB
testcase_26 AC 50 ms
6,940 KB
testcase_27 AC 24 ms
6,944 KB
testcase_28 AC 30 ms
6,940 KB
testcase_29 AC 30 ms
6,944 KB
testcase_30 AC 23 ms
6,940 KB
testcase_31 AC 19 ms
6,940 KB
testcase_32 AC 71 ms
7,740 KB
testcase_33 AC 70 ms
7,956 KB
testcase_34 AC 60 ms
7,808 KB
testcase_35 AC 73 ms
7,256 KB
testcase_36 AC 71 ms
7,320 KB
testcase_37 AC 64 ms
7,060 KB
testcase_38 AC 69 ms
7,192 KB
testcase_39 AC 71 ms
7,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
#include <stdbool.h>

int a[100000], *g[100000], d[100000], s[100000], x[100000];
bool l[100000];

int comp(const void *x, const void *y) {
    return a[*(const int *)x] - a[*(const int *)y];
}

int main() {
    int n, m;
    scanf("%d %d", &n, &m);

    for (int i = 0; i < n; ++i) {
        scanf("%d", &a[i]);

        g[i] = NULL;
        d[i] = 0;
        s[i] = i;
    }

    qsort(&s[0], n, sizeof(int), comp);

    for (int i = 0; i < m; ++i) {
        int u, v;
        scanf("%d %d", &u, &v);
        --u; --v;

        g[u] = realloc(g[u], sizeof(int) * (d[u] + 1));
        g[v] = realloc(g[v], sizeof(int) * (d[v] + 1));
        g[u][d[u]] = v;
        g[v][d[v]] = u;
        ++d[u]; ++d[v];
    }

    int k;
    scanf("%d", &k);

    while (k--) {
        int b;
        scanf("%d", &b);
        --b;

        l[b] = true;
    }

    int *last = &x[0];
    for (int i = 0; i < n; ++i) {
        int v = s[i];

        if (!l[v]) {
            continue;
        }

        *last++ = v;
        for (int j = 0; j < d[v]; ++j) {
            int u = g[v][j];
            if (a[v] < a[u]) {
                l[u] = !l[u];
            }
        }
    }

    printf("%ld\n", last - &x[0]);

    int *iter = &x[0];
    while (iter != last) {
        printf("%d\n", *iter++ + 1);
    }
}

0