結果

問題 No.1382 Travel in Mitaru city
ユーザー kotatsugamekotatsugame
提出日時 2021-02-07 21:26:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 1,392 bytes
コンパイル時間 942 ms
コンパイル使用メモリ 78,444 KB
実行使用メモリ 11,596 KB
最終ジャッジ日時 2024-07-04 14:39:28
合計ジャッジ時間 9,205 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,656 KB
testcase_01 AC 5 ms
6,528 KB
testcase_02 AC 4 ms
6,528 KB
testcase_03 AC 4 ms
6,528 KB
testcase_04 AC 4 ms
6,528 KB
testcase_05 AC 4 ms
6,528 KB
testcase_06 AC 64 ms
8,064 KB
testcase_07 AC 50 ms
7,808 KB
testcase_08 AC 27 ms
7,424 KB
testcase_09 AC 70 ms
8,192 KB
testcase_10 AC 64 ms
8,064 KB
testcase_11 AC 95 ms
9,344 KB
testcase_12 AC 94 ms
9,344 KB
testcase_13 AC 106 ms
9,344 KB
testcase_14 AC 87 ms
9,216 KB
testcase_15 AC 89 ms
9,216 KB
testcase_16 AC 138 ms
11,008 KB
testcase_17 AC 140 ms
11,008 KB
testcase_18 AC 139 ms
11,008 KB
testcase_19 AC 136 ms
11,008 KB
testcase_20 AC 137 ms
11,008 KB
testcase_21 AC 144 ms
11,008 KB
testcase_22 AC 146 ms
11,008 KB
testcase_23 AC 143 ms
11,008 KB
testcase_24 AC 141 ms
11,008 KB
testcase_25 AC 154 ms
11,008 KB
testcase_26 AC 135 ms
11,008 KB
testcase_27 AC 136 ms
11,008 KB
testcase_28 AC 133 ms
11,008 KB
testcase_29 AC 138 ms
11,136 KB
testcase_30 AC 129 ms
11,136 KB
testcase_31 AC 107 ms
10,624 KB
testcase_32 AC 135 ms
11,392 KB
testcase_33 AC 123 ms
11,008 KB
testcase_34 AC 86 ms
9,600 KB
testcase_35 AC 59 ms
8,448 KB
testcase_36 AC 94 ms
10,496 KB
testcase_37 AC 18 ms
7,296 KB
testcase_38 AC 105 ms
11,008 KB
testcase_39 AC 30 ms
7,808 KB
testcase_40 AC 79 ms
9,856 KB
testcase_41 AC 88 ms
10,240 KB
testcase_42 AC 107 ms
11,136 KB
testcase_43 AC 94 ms
10,624 KB
testcase_44 AC 40 ms
8,192 KB
testcase_45 AC 86 ms
10,240 KB
testcase_46 AC 34 ms
7,936 KB
testcase_47 AC 118 ms
11,188 KB
testcase_48 AC 77 ms
9,728 KB
testcase_49 AC 117 ms
11,596 KB
testcase_50 AC 53 ms
8,704 KB
testcase_51 AC 100 ms
10,624 KB
testcase_52 AC 127 ms
11,520 KB
testcase_53 AC 30 ms
7,936 KB
testcase_54 AC 57 ms
8,832 KB
testcase_55 AC 127 ms
11,136 KB
testcase_56 AC 43 ms
7,936 KB
testcase_57 AC 84 ms
9,600 KB
testcase_58 AC 16 ms
7,040 KB
testcase_59 AC 41 ms
8,192 KB
testcase_60 AC 116 ms
11,008 KB
testcase_61 AC 6 ms
6,656 KB
testcase_62 AC 3 ms
6,656 KB
testcase_63 AC 17 ms
6,784 KB
testcase_64 AC 8 ms
6,656 KB
testcase_65 AC 5 ms
6,528 KB
testcase_66 AC 6 ms
6,656 KB
testcase_67 AC 7 ms
6,656 KB
testcase_68 AC 9 ms
6,784 KB
testcase_69 AC 6 ms
6,656 KB
testcase_70 AC 11 ms
6,784 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:40:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   40 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
#include<vector>
struct UF{
	int n;
	vector<int>parent,rank,mx;
	UF(int n_=0):n(n_),parent(n_),rank(n_,1),mx(n_,(int)-1e9)
	{
		for(int i=0;i<n_;i++)parent[i]=i;
	}
	int find(int a){return parent[a]!=a?parent[a]=find(parent[a]):a;}
	bool same(int a,int b){return find(a)==find(b);}
	bool unite(int a,int b)
	{
		a=find(a),b=find(b);
		if(a==b)return false;
		if(rank[a]<rank[b])
		{
			mx[b]=max(mx[b],mx[a]);
			parent[a]=b;
			rank[b]+=rank[a];
		}
		else
		{
			mx[a]=max(mx[a],mx[b]);
			parent[b]=a;
			rank[a]+=rank[b];
		}
		return true;
	}
	int size(int a){return rank[find(a)];}
};
int N,M,S,T;
int P[1<<17];
vector<int>G[1<<17];
int dp[1<<17];
int id[1<<17];
main()
{
	cin>>N>>M>>S>>T;
	S--,T--;
	for(int i=0;i<N;i++)cin>>P[i];
	for(int i=0;i<M;i++)
	{
		int a,b;cin>>a>>b;
		a--,b--;
		G[a].push_back(b);
		G[b].push_back(a);
	}
	for(int i=0;i<N;i++)id[i]=i;
	sort(id,id+N,[](int i,int j){return P[i]>P[j];});
	UF uf(N);
	for(int i=0;i<N;)
	{
		int j=i;
		while(j<N&&P[id[i]]==P[id[j]])j++;
		for(int k=i;k<j;k++)
		{
			int u=id[k];
			int mx=-1e9;
			for(int v:G[u])if(P[v]>P[u])mx=max(mx,uf.mx[uf.find(v)]);
			mx++;
			if(u==S)mx=0;
			uf.mx[uf.find(u)]=mx;
		}
		for(int k=i;k<j;k++)
		{
			int u=id[k];
			for(int v:G[u])if(P[v]>=P[u])uf.unite(u,v);
		}
		i=j;
	}
	cout<<uf.mx[uf.find(T)]<<endl;
}
0