結果

問題 No.1382 Travel in Mitaru city
ユーザー kotatsugamekotatsugame
提出日時 2021-02-07 21:22:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,381 bytes
コンパイル時間 905 ms
コンパイル使用メモリ 80,152 KB
実行使用メモリ 11,596 KB
最終ジャッジ日時 2024-07-04 14:36:07
合計ジャッジ時間 8,905 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,528 KB
testcase_01 AC 4 ms
6,528 KB
testcase_02 AC 4 ms
6,528 KB
testcase_03 AC 4 ms
6,528 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 62 ms
8,064 KB
testcase_07 AC 50 ms
7,572 KB
testcase_08 AC 27 ms
7,296 KB
testcase_09 AC 69 ms
8,320 KB
testcase_10 AC 64 ms
8,064 KB
testcase_11 WA -
testcase_12 AC 99 ms
9,412 KB
testcase_13 AC 106 ms
9,472 KB
testcase_14 AC 91 ms
9,344 KB
testcase_15 AC 95 ms
9,216 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 151 ms
11,008 KB
testcase_19 WA -
testcase_20 AC 153 ms
11,008 KB
testcase_21 AC 158 ms
11,008 KB
testcase_22 AC 155 ms
11,020 KB
testcase_23 AC 157 ms
10,996 KB
testcase_24 AC 157 ms
10,976 KB
testcase_25 AC 156 ms
11,008 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 98 ms
10,496 KB
testcase_37 AC 18 ms
7,236 KB
testcase_38 AC 109 ms
11,136 KB
testcase_39 AC 30 ms
7,808 KB
testcase_40 AC 82 ms
9,976 KB
testcase_41 AC 91 ms
10,240 KB
testcase_42 AC 110 ms
11,264 KB
testcase_43 AC 95 ms
10,496 KB
testcase_44 AC 40 ms
8,288 KB
testcase_45 AC 87 ms
10,112 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 113 ms
10,752 KB
testcase_52 AC 137 ms
11,404 KB
testcase_53 AC 31 ms
7,776 KB
testcase_54 AC 60 ms
8,832 KB
testcase_55 AC 132 ms
11,136 KB
testcase_56 AC 42 ms
7,936 KB
testcase_57 AC 85 ms
9,600 KB
testcase_58 AC 16 ms
7,168 KB
testcase_59 AC 41 ms
8,320 KB
testcase_60 AC 124 ms
11,136 KB
testcase_61 WA -
testcase_62 AC 4 ms
6,528 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 idx=0;idx<N;idx++)
	{
		int u=id[idx];
		for(int v:G[u])if(P[v]>P[u])uf.unite(u,v);
		int mx=uf.mx[uf.find(u)];
		mx++;
		if(u==S)mx=0;
		uf.mx[uf.find(u)]=mx;
		if(idx+1<N&&P[id[idx]]>P[id[idx+1]])
		{
			for(int i=idx;i>=0&&P[id[idx]]==P[id[i]];i--)
			{
				for(int v:G[id[i]])if(P[v]==P[id[i]])uf.unite(v,id[i]);
			}
		}
	}
	cout<<uf.mx[uf.find(T)]<<endl;
}
0