結果

問題 No.1480 Many Complete Graphs
ユーザー se1ka2se1ka2
提出日時 2021-04-16 21:19:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 2,380 bytes
コンパイル時間 998 ms
コンパイル使用メモリ 87,408 KB
実行使用メモリ 29,696 KB
最終ジャッジ日時 2024-07-03 04:12:43
合計ジャッジ時間 6,686 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,192 KB
testcase_01 AC 3 ms
7,984 KB
testcase_02 AC 4 ms
8,184 KB
testcase_03 AC 4 ms
8,192 KB
testcase_04 AC 4 ms
8,064 KB
testcase_05 AC 4 ms
8,192 KB
testcase_06 AC 4 ms
8,064 KB
testcase_07 AC 4 ms
8,192 KB
testcase_08 AC 3 ms
8,192 KB
testcase_09 AC 5 ms
8,704 KB
testcase_10 AC 5 ms
8,448 KB
testcase_11 AC 4 ms
8,320 KB
testcase_12 AC 4 ms
8,396 KB
testcase_13 AC 25 ms
13,440 KB
testcase_14 AC 19 ms
12,416 KB
testcase_15 AC 39 ms
15,232 KB
testcase_16 AC 22 ms
11,816 KB
testcase_17 AC 24 ms
12,032 KB
testcase_18 AC 7 ms
9,088 KB
testcase_19 AC 24 ms
12,544 KB
testcase_20 AC 48 ms
16,000 KB
testcase_21 AC 36 ms
15,232 KB
testcase_22 AC 22 ms
12,288 KB
testcase_23 AC 79 ms
23,040 KB
testcase_24 AC 100 ms
24,320 KB
testcase_25 AC 110 ms
24,552 KB
testcase_26 AC 109 ms
24,352 KB
testcase_27 AC 114 ms
24,448 KB
testcase_28 AC 80 ms
23,096 KB
testcase_29 AC 76 ms
23,212 KB
testcase_30 AC 84 ms
22,976 KB
testcase_31 AC 87 ms
23,104 KB
testcase_32 AC 83 ms
23,232 KB
testcase_33 AC 81 ms
23,084 KB
testcase_34 AC 85 ms
22,956 KB
testcase_35 AC 80 ms
23,056 KB
testcase_36 AC 78 ms
23,068 KB
testcase_37 AC 76 ms
22,640 KB
testcase_38 AC 77 ms
23,052 KB
testcase_39 AC 75 ms
22,764 KB
testcase_40 AC 78 ms
22,636 KB
testcase_41 AC 75 ms
22,508 KB
testcase_42 AC 79 ms
23,096 KB
testcase_43 AC 81 ms
23,112 KB
testcase_44 AC 82 ms
23,220 KB
testcase_45 AC 77 ms
23,084 KB
testcase_46 AC 82 ms
23,100 KB
testcase_47 AC 139 ms
27,008 KB
testcase_48 AC 156 ms
27,008 KB
testcase_49 AC 136 ms
27,008 KB
testcase_50 AC 104 ms
26,624 KB
testcase_51 AC 149 ms
26,880 KB
testcase_52 AC 110 ms
25,832 KB
testcase_53 AC 105 ms
25,832 KB
testcase_54 AC 104 ms
25,972 KB
testcase_55 AC 102 ms
25,712 KB
testcase_56 AC 111 ms
25,724 KB
testcase_57 AC 97 ms
29,696 KB
testcase_58 AC 103 ms
29,044 KB
evil_aftercontest.txt AC 225 ms
50,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
using namespace std;
typedef long long ll;

template <typename T>
struct Edge
{
    int to;
    T cost;
};

template <typename T>
struct WeightedGraph
{
    int n;
    std::vector<std::vector<Edge<T>>> g;
    
    WeightedGraph(){}
    
    WeightedGraph(int n) : n(n){
        g.resize(n);
    }
    
    void add_edge(int from, int to, T cost){
        g[from].push_back((Edge<T>){to, cost});
    }
};

template <typename T>
std::vector<T> dijkstra(WeightedGraph<T> &g, int s){
    int n = g.n;
    std::vector<T> d(n);
    fill(d.begin(), d.end(), -2);
    std::priority_queue<std::pair<T, int>, std::vector<std::pair<T, int>>, std::greater<std::pair<T, int>>> que;
    d[s] = 0;
    que.push(std::pair<T, int>(0, s));
    while(que.size()){
        std::pair<T, int> p = que.top();
        que.pop();
        int u = p.second;
        if(d[u] < p.first) continue;
        for(Edge<T> &e : g.g[u]){
            int v = e.to;
            if(d[v] == -2 || d[v] > d[u] + e.cost){
                d[v] = d[u] + e.cost;
                que.push(std::pair<T, int>(d[v], v));
            }
        }
    }
    return d;
}

int main()
{
    int n, m;
    cin >> n >> m;
    int k[100005];
    ll c[100005];
    vector<int> s[100005];
    int l = 0;
    for(int i = 0; i < m; i++){
        cin >> k[i] >> c[i];
        l += k[i];
        s[i].resize(k[i]);
        for(int j = 0; j < k[i]; j++) cin >> s[i][j];
    }
    WeightedGraph<ll> g(l + m * 2 + 2);
    vector<int> v[100005];
    int id = m * 2;
    for(int i = 0; i < m; i++){
        for(int j = 0; j < k[i]; j++){
            v[s[i][j]].push_back(id);
            g.add_edge(id, i * 2, (s[i][j] + 1) / 2 * 2 + c[i]);
            g.add_edge(i * 2, id, (s[i][j] + 1) / 2 * 2 + c[i]);
            if(s[i][j] % 2){
                g.add_edge(id, i * 2 + 1, s[i][j] + c[i]);
                g.add_edge(i * 2 + 1, id, s[i][j] + c[i]);
            }
            if(s[i][j] == 1) g.add_edge(l + m * 2, id, 0);
            if(s[i][j] == n) g.add_edge(id, l + m * 2 + 1, 0);
            id++;
        }
    }
    for(int i = 1; i <= n; i++){
        for(int j = 0; j < (int)v[i].size() - 1; j++){
            g.add_edge(v[i][j], v[i][j + 1], 0);
            g.add_edge(v[i][j + 1], v[i][j], 0);
        }
    }
    vector<ll> d = dijkstra(g, l + m * 2);
    cout << d[l + m * 2 + 1] / 2 << endl;
}
0