結果

問題 No.2477 Drifting
ユーザー りあんりあん
提出日時 2023-09-11 20:17:09
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 1,684 bytes
コンパイル時間 4,280 ms
コンパイル使用メモリ 283,120 KB
実行使用メモリ 35,608 KB
最終ジャッジ日時 2024-06-29 10:02:04
合計ジャッジ時間 9,538 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 260 ms
35,348 KB
testcase_01 AC 171 ms
24,532 KB
testcase_02 AC 265 ms
35,608 KB
testcase_03 AC 198 ms
13,952 KB
testcase_04 AC 57 ms
8,212 KB
testcase_05 AC 129 ms
11,776 KB
testcase_06 AC 277 ms
33,840 KB
testcase_07 AC 272 ms
33,832 KB
testcase_08 AC 188 ms
26,220 KB
testcase_09 AC 83 ms
15,544 KB
testcase_10 AC 94 ms
17,116 KB
testcase_11 AC 93 ms
15,688 KB
testcase_12 AC 137 ms
20,224 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 74 ms
12,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// #pragma GCC target("avx2")
#pragma GCC optimize("O3")
// #pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
using namespace std;

using P = pair<int, int>;

const int M = 998244353;
const long long LM = 1LL << 60;


int main() {
    cin.tie(0);
    ios::sync_with_stdio(0);
    int n, m;
    cin >> n >> m;
    vector<vector<pair<long long, int>>> edge(n);
    for (int i = 0; i < m; ++i) {
        int u, v;
        long long w;
        cin >> u >> v >> w;
        --u;
        --v;
        edge[u].emplace_back(w, v);
    }
    int k;
    cin >> k;
    unordered_map<long long, unordered_set<int>> banned;
    for (int i = 0; i < k; ++i) {
        int a, b, c;
        cin >> a >> b >> c;
        --a;
        --b;
        --c;
        if (!banned.count(a * (long long)M + b)) {
            banned[a * (long long)M + b] = unordered_set<int>();
        }
        banned[a * (long long)M + b].insert(c);
    }
    long long ans = -1;
    priority_queue<pair<long long, long long>, vector<pair<long long, long long>>, greater<pair<long long, long long>>> pq;
    pq.emplace(0LL, 0LL);

    while (!pq.empty()) {
        auto p = pq.top();
        pq.pop();
        int now = p.second % M;
        if (now == n - 1) {
            ans = p.first;
            break;
        }
        vector<pair<long long, int>> rem;
        for (auto& e : edge[now]) {
            if (banned.count(p.second) && banned[p.second].count(e.second)) {
                rem.push_back(e);
            }
            else {
                pq.emplace(e.first + p.first, now * (long long)M + e.second);
            }
        }
        edge[now] = rem;
    }

    cout << ans << '\n';

    return 0;
}
0