結果

問題 No.1480 Many Complete Graphs
ユーザー 蜜蜂蜜蜂
提出日時 2021-03-04 19:55:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 939 bytes
コンパイル時間 1,899 ms
コンパイル使用メモリ 176,336 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-07-03 04:02:33
合計ジャッジ時間 9,268 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 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 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 21 ms
7,552 KB
testcase_14 AC 16 ms
6,016 KB
testcase_15 WA -
testcase_16 AC 22 ms
7,040 KB
testcase_17 AC 26 ms
6,656 KB
testcase_18 AC 7 ms
5,760 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 26 ms
7,296 KB
testcase_22 AC 14 ms
5,504 KB
testcase_23 AC 55 ms
11,008 KB
testcase_24 AC 75 ms
8,960 KB
testcase_25 WA -
testcase_26 AC 120 ms
11,136 KB
testcase_27 AC 69 ms
8,832 KB
testcase_28 AC 155 ms
12,744 KB
testcase_29 AC 168 ms
13,768 KB
testcase_30 AC 154 ms
12,744 KB
testcase_31 AC 178 ms
13,640 KB
testcase_32 AC 222 ms
13,768 KB
testcase_33 AC 155 ms
12,748 KB
testcase_34 AC 156 ms
12,740 KB
testcase_35 AC 107 ms
12,744 KB
testcase_36 AC 120 ms
12,744 KB
testcase_37 AC 97 ms
12,744 KB
testcase_38 AC 115 ms
12,744 KB
testcase_39 AC 110 ms
12,748 KB
testcase_40 AC 108 ms
12,752 KB
testcase_41 WA -
testcase_42 AC 87 ms
12,620 KB
testcase_43 AC 111 ms
12,752 KB
testcase_44 AC 115 ms
12,748 KB
testcase_45 AC 124 ms
12,876 KB
testcase_46 AC 129 ms
12,700 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 81 ms
14,336 KB
testcase_51 AC 318 ms
15,608 KB
testcase_52 WA -
testcase_53 AC 85 ms
14,108 KB
testcase_54 AC 87 ms
14,108 KB
testcase_55 AC 89 ms
14,104 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 73 ms
14,348 KB
evil_aftercontest.txt AC 146 ms
25,532 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:37:10: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   37 |     auto [now,dist] = que.top();
      |          ^
main.cpp:44:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   44 |     for(auto [next,dist2] : graph[now]){
      |              ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;
using ld = long double;
#define fi first
#define se second
#define pb push_back

using T = pair<int,ll>;

int main(){
  int n,m;
  cin>>n>>m;

  vector<vector<T>> graph(n+2*m);
  vector<ll> ans(n+2*m,1e18);
  ans[0]=0;
  
  for(int i=0;i<m;i++){
    int k;
    ll c;
    cin>>k>>c;
    graph[n+2*i].pb({n+2*i+1,c});
    for(int j=0;j<k;j++){
      int s;
      cin>>s;
      graph[s-1].pb({n+2*i,(s+1)/2});
      graph[n+2*i+1].pb({s-1,s/2});
    }
  }

  priority_queue<T,vector<T>,greater<T>> que;
  que.push({0,0});

  while(!que.empty()){
    auto [now,dist] = que.top();
    que.pop();

    if(dist>ans[now]){
      continue;
    }

    for(auto [next,dist2] : graph[now]){
      if(ans[now]+dist2<ans[next]){
        que.push({next,dist2});
        ans[next]=ans[now]+dist2;
      }
    }
  }
  
  if(ans[n-1]>=1e18){
    ans[n-1]=-1;
  }
  cout<<ans[n-1]<<endl;
}
0