結果

問題 No.1480 Many Complete Graphs
ユーザー kotatsugamekotatsugame
提出日時 2021-04-24 05:51:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 889 bytes
コンパイル時間 716 ms
コンパイル使用メモリ 80,088 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-07-04 09:00:06
合計ジャッジ時間 5,543 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
12,672 KB
testcase_01 AC 5 ms
12,672 KB
testcase_02 AC 5 ms
12,672 KB
testcase_03 AC 4 ms
12,672 KB
testcase_04 AC 5 ms
12,672 KB
testcase_05 AC 5 ms
12,672 KB
testcase_06 AC 5 ms
12,672 KB
testcase_07 AC 5 ms
12,672 KB
testcase_08 AC 6 ms
12,672 KB
testcase_09 AC 6 ms
12,800 KB
testcase_10 AC 6 ms
12,800 KB
testcase_11 AC 5 ms
12,800 KB
testcase_12 AC 6 ms
12,672 KB
testcase_13 AC 20 ms
14,848 KB
testcase_14 AC 17 ms
13,952 KB
testcase_15 AC 34 ms
15,360 KB
testcase_16 AC 21 ms
14,596 KB
testcase_17 AC 20 ms
14,348 KB
testcase_18 AC 9 ms
13,440 KB
testcase_19 AC 22 ms
14,476 KB
testcase_20 AC 30 ms
14,720 KB
testcase_21 AC 26 ms
14,720 KB
testcase_22 AC 18 ms
13,824 KB
testcase_23 AC 47 ms
16,640 KB
testcase_24 AC 48 ms
15,728 KB
testcase_25 AC 54 ms
16,512 KB
testcase_26 AC 62 ms
17,632 KB
testcase_27 AC 49 ms
15,664 KB
testcase_28 AC 58 ms
18,432 KB
testcase_29 AC 62 ms
18,564 KB
testcase_30 AC 60 ms
17,920 KB
testcase_31 AC 60 ms
17,920 KB
testcase_32 AC 61 ms
18,432 KB
testcase_33 AC 58 ms
18,048 KB
testcase_34 AC 57 ms
18,556 KB
testcase_35 AC 62 ms
18,376 KB
testcase_36 AC 61 ms
18,468 KB
testcase_37 AC 58 ms
17,920 KB
testcase_38 AC 61 ms
18,468 KB
testcase_39 AC 62 ms
17,920 KB
testcase_40 AC 60 ms
17,920 KB
testcase_41 AC 62 ms
18,048 KB
testcase_42 AC 59 ms
18,436 KB
testcase_43 AC 58 ms
18,440 KB
testcase_44 AC 62 ms
18,048 KB
testcase_45 AC 60 ms
18,436 KB
testcase_46 AC 59 ms
17,920 KB
testcase_47 AC 95 ms
18,916 KB
testcase_48 AC 87 ms
18,944 KB
testcase_49 AC 95 ms
18,816 KB
testcase_50 AC 74 ms
18,688 KB
testcase_51 AC 98 ms
18,944 KB
testcase_52 AC 82 ms
18,788 KB
testcase_53 AC 77 ms
18,788 KB
testcase_54 AC 81 ms
18,784 KB
testcase_55 AC 81 ms
18,780 KB
testcase_56 AC 73 ms
18,912 KB
testcase_57 AC 78 ms
18,560 KB
testcase_58 AC 68 ms
18,772 KB
evil_aftercontest.txt AC 131 ms
25,176 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[3<<17];
long dist[3<<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*2+s%2,s+c));
			G[N+i*2+s%2].push_back(make_pair(s,s+c));
		}
		G[N+i*2].push_back(make_pair(N+i*2+1,1));
		G[N+i*2+1].push_back(make_pair(N+i*2,1));
	}
	for(int i=0;i<N+2*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=-2;
	cout<<ans/2<<endl;
}
0