結果

問題 No.1480 Many Complete Graphs
ユーザー 蜜蜂蜜蜂
提出日時 2021-03-04 20:09:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 400 ms / 2,000 ms
コード長 1,095 bytes
コンパイル時間 1,975 ms
コンパイル使用メモリ 177,068 KB
実行使用メモリ 16,372 KB
最終ジャッジ日時 2024-07-03 04:03:51
合計ジャッジ時間 9,803 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 22 ms
7,552 KB
testcase_14 AC 17 ms
6,144 KB
testcase_15 AC 49 ms
8,192 KB
testcase_16 AC 25 ms
7,168 KB
testcase_17 AC 29 ms
6,784 KB
testcase_18 AC 7 ms
5,760 KB
testcase_19 AC 27 ms
6,656 KB
testcase_20 AC 47 ms
7,168 KB
testcase_21 AC 27 ms
7,296 KB
testcase_22 AC 15 ms
5,376 KB
testcase_23 AC 57 ms
11,008 KB
testcase_24 AC 97 ms
9,216 KB
testcase_25 AC 115 ms
10,496 KB
testcase_26 AC 149 ms
11,264 KB
testcase_27 AC 93 ms
9,216 KB
testcase_28 AC 164 ms
12,936 KB
testcase_29 AC 178 ms
13,956 KB
testcase_30 AC 164 ms
12,936 KB
testcase_31 AC 190 ms
13,956 KB
testcase_32 AC 238 ms
13,964 KB
testcase_33 AC 164 ms
12,936 KB
testcase_34 AC 163 ms
14,092 KB
testcase_35 AC 108 ms
13,048 KB
testcase_36 AC 123 ms
13,052 KB
testcase_37 AC 100 ms
13,048 KB
testcase_38 AC 116 ms
13,048 KB
testcase_39 AC 111 ms
13,052 KB
testcase_40 AC 111 ms
12,544 KB
testcase_41 AC 141 ms
13,052 KB
testcase_42 AC 89 ms
13,064 KB
testcase_43 AC 114 ms
12,944 KB
testcase_44 AC 117 ms
12,936 KB
testcase_45 AC 127 ms
12,936 KB
testcase_46 AC 130 ms
12,936 KB
testcase_47 AC 346 ms
16,372 KB
testcase_48 AC 372 ms
16,364 KB
testcase_49 AC 400 ms
16,360 KB
testcase_50 AC 83 ms
15,104 KB
testcase_51 AC 345 ms
16,364 KB
testcase_52 AC 136 ms
14,168 KB
testcase_53 AC 91 ms
14,168 KB
testcase_54 AC 108 ms
14,180 KB
testcase_55 AC 109 ms
14,056 KB
testcase_56 AC 136 ms
14,168 KB
testcase_57 AC 86 ms
14,976 KB
testcase_58 AC 82 ms
14,216 KB
evil_aftercontest.txt AC 161 ms
25,536 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:44:10: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   44 |     auto [now,dist] = que.top();
      |          ^
main.cpp:51:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   51 |     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,1});
    graph[n+2*i+1].pb({n+2*i,1});
    for(int j=0;j<k;j++){
      int s;
      cin>>s;
      if(s%2==1){
        graph[s-1].pb({n+2*i,s+c});
        graph[n+2*i].pb({s-1,s+c});
      }
      else{
        graph[s-1].pb({n+2*i+1,s+c});
        graph[n+2*i+1].pb({s-1,s+c});
      }
    }
  }

  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]=-2;
  }
  cout<<ans[n-1]/2<<endl;
}
0