結果

問題 No.1480 Many Complete Graphs
ユーザー kotatsugamekotatsugame
提出日時 2021-04-24 05:48:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 987 bytes
コンパイル時間 923 ms
コンパイル使用メモリ 79,908 KB
実行使用メモリ 28,416 KB
最終ジャッジ日時 2024-07-04 09:00:01
合計ジャッジ時間 7,006 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
20,164 KB
testcase_01 AC 8 ms
18,688 KB
testcase_02 AC 8 ms
18,688 KB
testcase_03 AC 8 ms
18,688 KB
testcase_04 AC 8 ms
18,688 KB
testcase_05 AC 8 ms
18,688 KB
testcase_06 AC 7 ms
18,816 KB
testcase_07 AC 7 ms
18,688 KB
testcase_08 AC 8 ms
18,816 KB
testcase_09 AC 7 ms
18,944 KB
testcase_10 AC 7 ms
18,816 KB
testcase_11 AC 7 ms
18,688 KB
testcase_12 AC 8 ms
18,688 KB
testcase_13 AC 26 ms
20,864 KB
testcase_14 AC 20 ms
20,224 KB
testcase_15 AC 37 ms
21,196 KB
testcase_16 AC 23 ms
20,480 KB
testcase_17 AC 23 ms
20,352 KB
testcase_18 AC 11 ms
19,584 KB
testcase_19 AC 24 ms
20,352 KB
testcase_20 AC 33 ms
20,864 KB
testcase_21 AC 29 ms
20,736 KB
testcase_22 AC 19 ms
19,840 KB
testcase_23 AC 55 ms
22,656 KB
testcase_24 AC 51 ms
21,760 KB
testcase_25 AC 63 ms
22,528 KB
testcase_26 AC 72 ms
23,040 KB
testcase_27 AC 51 ms
21,760 KB
testcase_28 AC 68 ms
24,848 KB
testcase_29 AC 68 ms
24,844 KB
testcase_30 AC 69 ms
24,320 KB
testcase_31 AC 69 ms
24,648 KB
testcase_32 AC 69 ms
24,848 KB
testcase_33 AC 67 ms
24,320 KB
testcase_34 AC 70 ms
24,848 KB
testcase_35 AC 66 ms
24,236 KB
testcase_36 AC 66 ms
24,320 KB
testcase_37 AC 68 ms
24,872 KB
testcase_38 AC 65 ms
24,192 KB
testcase_39 AC 66 ms
24,876 KB
testcase_40 AC 67 ms
24,320 KB
testcase_41 AC 64 ms
24,320 KB
testcase_42 AC 64 ms
24,852 KB
testcase_43 AC 65 ms
24,852 KB
testcase_44 AC 69 ms
24,844 KB
testcase_45 AC 69 ms
24,852 KB
testcase_46 AC 66 ms
24,720 KB
testcase_47 AC 139 ms
27,000 KB
testcase_48 AC 138 ms
26,836 KB
testcase_49 AC 134 ms
26,880 KB
testcase_50 AC 82 ms
26,752 KB
testcase_51 AC 132 ms
26,880 KB
testcase_52 AC 98 ms
25,880 KB
testcase_53 AC 105 ms
25,892 KB
testcase_54 AC 100 ms
25,884 KB
testcase_55 AC 106 ms
25,748 KB
testcase_56 AC 106 ms
25,900 KB
testcase_57 AC 95 ms
28,416 KB
testcase_58 AC 91 ms
27,812 KB
evil_aftercontest.txt AC 179 ms
37,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<queue>
using namespace std;
int N,M;
vector<pair<int,int> >G[5<<17];
long dist[5<<17];
main()
{
	cin>>N>>M;
	for(int i=0;i<M;i++)
	{
		int k,c;cin>>k>>c;
		c++;
		for(int j=0;j<k;j++)
		{
			int s;cin>>s;
			s--;
			G[s].push_back(make_pair(N+i*4+s%2,s/2));
			G[N+i*4+2+s%2].push_back(make_pair(s,s/2));
		}
		G[N+i*4].push_back(make_pair(N+i*4+2,c));
		G[N+i*4].push_back(make_pair(N+i*4+3,c+1));
		G[N+i*4+1].push_back(make_pair(N+i*4+2,c+1));
		G[N+i*4+1].push_back(make_pair(N+i*4+3,c+1));
	}
	for(int i=0;i<N+4*M;i++)dist[i]=9e18;
	priority_queue<pair<long,int> >P;
	dist[0]=0;
	P.push(make_pair(0,0));
	while(!P.empty())
	{
		int u=P.top().second;
		long c=-P.top().first;
		P.pop();
		if(dist[u]<c)continue;
		for(pair<int,int>e:G[u])
		{
			int v=e.first;
			long nxt=c+e.second;
			if(dist[v]>nxt)
			{
				dist[v]=nxt;
				P.push(make_pair(-nxt,v));
			}
		}
	}
	long ans=dist[N-1];
	if(ans==(long)9e18)ans=-1;
	cout<<ans<<endl;
}
0