結果

問題 No.1480 Many Complete Graphs
ユーザー 蜜蜂蜜蜂
提出日時 2021-03-04 20:15:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 1,471 bytes
コンパイル時間 1,939 ms
コンパイル使用メモリ 177,552 KB
実行使用メモリ 16,372 KB
最終ジャッジ日時 2024-07-03 04:04:05
合計ジャッジ時間 10,533 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 22 ms
7,552 KB
testcase_14 AC 17 ms
6,016 KB
testcase_15 AC 46 ms
8,192 KB
testcase_16 AC 24 ms
7,040 KB
testcase_17 AC 29 ms
6,784 KB
testcase_18 AC 7 ms
5,760 KB
testcase_19 AC 27 ms
6,528 KB
testcase_20 AC 45 ms
7,040 KB
testcase_21 AC 26 ms
7,296 KB
testcase_22 AC 15 ms
5,376 KB
testcase_23 AC 56 ms
11,008 KB
testcase_24 AC 94 ms
9,216 KB
testcase_25 AC 105 ms
10,496 KB
testcase_26 AC 139 ms
11,264 KB
testcase_27 AC 86 ms
9,088 KB
testcase_28 AC 187 ms
13,048 KB
testcase_29 AC 208 ms
13,948 KB
testcase_30 AC 188 ms
13,052 KB
testcase_31 AC 223 ms
14,072 KB
testcase_32 AC 279 ms
14,076 KB
testcase_33 AC 189 ms
13,048 KB
testcase_34 AC 191 ms
14,072 KB
testcase_35 AC 121 ms
13,164 KB
testcase_36 AC 140 ms
13,164 KB
testcase_37 AC 111 ms
13,160 KB
testcase_38 AC 131 ms
13,288 KB
testcase_39 AC 126 ms
13,292 KB
testcase_40 AC 126 ms
12,544 KB
testcase_41 AC 164 ms
13,168 KB
testcase_42 AC 97 ms
13,048 KB
testcase_43 AC 129 ms
13,056 KB
testcase_44 AC 135 ms
13,048 KB
testcase_45 AC 147 ms
13,048 KB
testcase_46 AC 153 ms
13,048 KB
testcase_47 AC 343 ms
16,372 KB
testcase_48 AC 388 ms
16,364 KB
testcase_49 AC 416 ms
16,364 KB
testcase_50 AC 84 ms
15,104 KB
testcase_51 AC 362 ms
16,364 KB
testcase_52 AC 141 ms
14,228 KB
testcase_53 AC 93 ms
14,360 KB
testcase_54 AC 111 ms
14,240 KB
testcase_55 AC 111 ms
14,364 KB
testcase_56 AC 140 ms
14,356 KB
testcase_57 AC 87 ms
15,104 KB
testcase_58 AC 81 ms
14,344 KB
evil_aftercontest.txt RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:69:10: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   69 |     auto [now,dist] = que.top();
      |          ^
main.cpp:79:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   79 |     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;
  
  assert(1<=n&&n<=1e5);
  assert(0<=m&&m<=1e5);

  vector<vector<T>> graph(n+2*m);
  vector<ll> ans(n+2*m,1e18);
  ans[0]=0;
  
  
  int ksum=0;
  
  for(int i=0;i<m;i++){
    int k;
    ll c;
    cin>>k>>c;
    
    ksum+=k;
    assert(1<=k&&k<=n);
    assert(1<=c&&c<=1e12);
    
    graph[n+2*i].pb({n+2*i+1,1});
    graph[n+2*i+1].pb({n+2*i,1});
    
    int si[k];
    
    for(int j=0;j<k;j++){
      int s;
      cin>>s;
      
      assert(1<=s&&s<=n);
      si[j]=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});
      }
    }
    
    
    for(int j=1;j<k;j++){
      assert(si[j-1]<si[j]);
    }
  }
  
  assert(ksum<=1e5);

  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;
    }
    if(graph[now].size()==0){
      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