結果

問題 No.1382 Travel in Mitaru city
ユーザー MisterMister
提出日時 2021-02-07 20:51:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 1,983 bytes
コンパイル時間 1,025 ms
コンパイル使用メモリ 90,596 KB
実行使用メモリ 11,692 KB
最終ジャッジ日時 2024-07-04 13:56:25
合計ジャッジ時間 5,438 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 26 ms
7,216 KB
testcase_07 AC 21 ms
6,176 KB
testcase_08 AC 11 ms
5,376 KB
testcase_09 AC 27 ms
7,604 KB
testcase_10 AC 25 ms
7,552 KB
testcase_11 AC 39 ms
7,936 KB
testcase_12 AC 44 ms
8,064 KB
testcase_13 AC 45 ms
8,448 KB
testcase_14 AC 36 ms
7,808 KB
testcase_15 AC 38 ms
7,936 KB
testcase_16 AC 59 ms
10,240 KB
testcase_17 AC 63 ms
10,368 KB
testcase_18 AC 65 ms
10,240 KB
testcase_19 AC 61 ms
10,240 KB
testcase_20 AC 62 ms
10,368 KB
testcase_21 AC 64 ms
10,368 KB
testcase_22 AC 61 ms
10,240 KB
testcase_23 AC 61 ms
10,368 KB
testcase_24 AC 63 ms
10,368 KB
testcase_25 AC 63 ms
10,368 KB
testcase_26 AC 62 ms
10,240 KB
testcase_27 AC 64 ms
10,368 KB
testcase_28 AC 63 ms
10,368 KB
testcase_29 AC 62 ms
10,368 KB
testcase_30 AC 64 ms
10,368 KB
testcase_31 AC 43 ms
8,064 KB
testcase_32 AC 52 ms
8,960 KB
testcase_33 AC 47 ms
8,704 KB
testcase_34 AC 31 ms
7,040 KB
testcase_35 AC 21 ms
5,632 KB
testcase_36 AC 33 ms
8,192 KB
testcase_37 AC 7 ms
5,376 KB
testcase_38 AC 37 ms
8,704 KB
testcase_39 AC 11 ms
5,376 KB
testcase_40 AC 31 ms
7,168 KB
testcase_41 AC 32 ms
7,808 KB
testcase_42 AC 38 ms
8,832 KB
testcase_43 AC 32 ms
8,064 KB
testcase_44 AC 15 ms
5,376 KB
testcase_45 AC 29 ms
7,552 KB
testcase_46 AC 16 ms
5,492 KB
testcase_47 AC 56 ms
11,256 KB
testcase_48 AC 39 ms
8,480 KB
testcase_49 AC 60 ms
11,692 KB
testcase_50 AC 27 ms
7,064 KB
testcase_51 AC 38 ms
8,192 KB
testcase_52 AC 48 ms
9,088 KB
testcase_53 AC 12 ms
5,376 KB
testcase_54 AC 21 ms
6,144 KB
testcase_55 AC 47 ms
8,832 KB
testcase_56 AC 15 ms
5,376 KB
testcase_57 AC 29 ms
7,040 KB
testcase_58 AC 6 ms
5,376 KB
testcase_59 AC 15 ms
5,376 KB
testcase_60 AC 46 ms
8,704 KB
testcase_61 AC 3 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
testcase_63 AC 6 ms
5,376 KB
testcase_64 AC 3 ms
5,376 KB
testcase_65 AC 2 ms
5,376 KB
testcase_66 AC 3 ms
5,376 KB
testcase_67 AC 3 ms
5,376 KB
testcase_68 AC 4 ms
5,376 KB
testcase_69 AC 2 ms
5,376 KB
testcase_70 AC 5 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#line 2 "/Users/tiramister/CompetitiveProgramming/Cpp/CppLibrary/Tools/heap_alias.hpp"

#include <queue>

template <class T>
using MaxHeap = std::priority_queue<T>;
template <class T>
using MinHeap = std::priority_queue<T, std::vector<T>, std::greater<T>>;
#line 2 "/Users/tiramister/CompetitiveProgramming/Cpp/CppLibrary/Graph/graph.hpp"

#include <vector>

template <class Cost = int>
struct Edge {
    int src, dst;
    Cost cost;

    Edge() = default;
    Edge(int src, int dst, Cost cost = 1)
        : src(src), dst(dst), cost(cost){};

    bool operator<(const Edge<Cost>& e) const { return cost < e.cost; }
    bool operator>(const Edge<Cost>& e) const { return cost > e.cost; }
};

template <class Cost = int>
struct Graph : public std::vector<std::vector<Edge<Cost>>> {
    using std::vector<std::vector<Edge<Cost>>>::vector;

    void span(bool direct, int src, int dst, Cost cost = 1) {
        (*this)[src].emplace_back(src, dst, cost);
        if (!direct) (*this)[dst].emplace_back(dst, src, cost);
    }
};
#line 3 "main.cpp"
#include <iostream>
#include <algorithm>
#line 6 "main.cpp"

using namespace std;

void solve() {
    int n, m, s, t;
    cin >> n >> m >> s >> t;
    --s;

    vector<int> xs(n);
    for (auto& x : xs) cin >> x;

    Graph<> graph(n);
    while (m--) {
        int u, v;
        cin >> u >> v;
        graph.span(false, --u, --v);
    }

    vector<bool> vis(n, false);
    MaxHeap<pair<int, int>> heap;

    vis[s] = true;
    heap.emplace(xs[s], s);

    int xmin = xs[s], y = 0;
    while (!heap.empty()) {
        auto [x, v] = heap.top();
        heap.pop();
        if (x < xmin) {
            ++y;
            xmin = x;
        }

        for (auto e : graph[v]) {
            int u = e.dst;
            if (vis[u]) continue;

            vis[u] = true;
            heap.emplace(xs[u], u);
        }
    }

    cout << y << "\n";
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    solve();

    return 0;
}
0