結果

問題 No.1480 Many Complete Graphs
ユーザー KudeKude
提出日時 2021-04-16 21:58:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 2,300 bytes
コンパイル時間 4,532 ms
コンパイル使用メモリ 271,648 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-07-03 04:16:20
合計ジャッジ時間 8,466 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 15 ms
8,320 KB
testcase_14 AC 11 ms
6,656 KB
testcase_15 AC 26 ms
9,728 KB
testcase_16 AC 16 ms
8,192 KB
testcase_17 AC 15 ms
7,552 KB
testcase_18 AC 6 ms
6,016 KB
testcase_19 AC 17 ms
7,680 KB
testcase_20 AC 24 ms
8,572 KB
testcase_21 AC 16 ms
8,320 KB
testcase_22 AC 10 ms
6,016 KB
testcase_23 AC 33 ms
12,928 KB
testcase_24 AC 37 ms
11,556 KB
testcase_25 AC 50 ms
13,148 KB
testcase_26 AC 56 ms
15,148 KB
testcase_27 AC 39 ms
11,752 KB
testcase_28 AC 43 ms
14,276 KB
testcase_29 AC 45 ms
14,532 KB
testcase_30 AC 43 ms
14,276 KB
testcase_31 AC 43 ms
14,276 KB
testcase_32 AC 45 ms
14,280 KB
testcase_33 AC 44 ms
14,408 KB
testcase_34 AC 43 ms
14,408 KB
testcase_35 AC 42 ms
14,248 KB
testcase_36 AC 43 ms
14,376 KB
testcase_37 AC 42 ms
14,256 KB
testcase_38 AC 42 ms
14,252 KB
testcase_39 AC 42 ms
14,384 KB
testcase_40 AC 43 ms
14,384 KB
testcase_41 AC 43 ms
14,384 KB
testcase_42 AC 44 ms
14,528 KB
testcase_43 AC 43 ms
14,280 KB
testcase_44 AC 44 ms
14,272 KB
testcase_45 AC 44 ms
14,404 KB
testcase_46 AC 44 ms
14,404 KB
testcase_47 AC 89 ms
15,872 KB
testcase_48 AC 89 ms
15,872 KB
testcase_49 AC 88 ms
16,000 KB
testcase_50 AC 51 ms
15,616 KB
testcase_51 AC 89 ms
16,000 KB
testcase_52 AC 69 ms
15,448 KB
testcase_53 AC 68 ms
15,572 KB
testcase_54 AC 65 ms
15,572 KB
testcase_55 AC 69 ms
15,572 KB
testcase_56 AC 69 ms
15,580 KB
testcase_57 AC 44 ms
14,848 KB
testcase_58 AC 46 ms
15,248 KB
evil_aftercontest.txt AC 96 ms
27,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i,n)for (int i = 0; i < int(n); ++i)
#define rrep(i,n)for (int i = int(n)-1; i >= 0; --i)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
template<class T> void chmax(T& a, const T& b) {a = max(a, b);}
template<class T> void chmin(T& a, const T& b) {a = min(a, b);}
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

const unsigned long long INF = 1002003004005006007;
template<class T>
std::vector<unsigned long long> dijkstra(std::vector<std::vector<std::pair<int,T>>>& to, int s=0) {
    struct QueElem {
        int v;
        unsigned long long c;
        bool operator<(const QueElem a) const {return c > a.c;}
        QueElem(int v, unsigned long long c): v(v), c(c) {}
    };
    std::priority_queue<QueElem> q;
    std::vector<unsigned long long> dist(to.size(), INF);
    dist[s] = 0;
    q.emplace(s, 0);
    while(!q.empty()) {
        QueElem qe = q.top(); q.pop();
        int u = qe.v;
        unsigned long long c = qe.c;
        if (c > dist[u]) continue;
        for(auto vc: to[u]) {
            int v = vc.first;
            unsigned long long nc = c + vc.second;
            if (nc < dist[v]) {
                dist[v] = nc;
                q.emplace(v, nc);
            }
        }
    }
    return dist;
}


int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m;
    cin >> n >> m;
    vector<vector<pair<int, ll>>> to(n + 2 * m);
    rep(i, m) {
        ll k, c;
        cin >> k >> c;
        VI s(k);
        rep(j, k) cin >> s[j];
        int ev = n + 2 * i, ov = n + 2 * i + 1;
        for(int u: s) {
            if (u & 1) {
                to[u - 1].emplace_back(ov, u / 2);
                to[ev].emplace_back(u - 1, c + u / 2 + 1);
                to[ov].emplace_back(u - 1, c + u / 2 + 1);
            } else {
                to[u - 1].emplace_back(ev, u / 2);
                to[ev].emplace_back(u - 1, c + u / 2);
                to[ov].emplace_back(u - 1, c + u / 2 + 1);
            }
        }
    }
    auto dist = dijkstra(to);
    ll ans = dist[n - 1];
    if (ans == INF) ans = -1;
    cout << ans << '\n';
}
0