結果

問題 No.1484 木に数を書き込む問題 / Just Write Numbers! 2
ユーザー kotatsugamekotatsugame
提出日時 2021-04-21 00:01:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 565 bytes
コンパイル時間 653 ms
コンパイル使用メモリ 77,484 KB
実行使用メモリ 18,044 KB
最終ジャッジ日時 2024-07-04 05:32:16
合計ジャッジ時間 5,001 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
9,600 KB
testcase_01 AC 5 ms
9,616 KB
testcase_02 AC 6 ms
9,472 KB
testcase_03 AC 5 ms
9,604 KB
testcase_04 AC 8 ms
9,700 KB
testcase_05 AC 16 ms
10,240 KB
testcase_06 AC 16 ms
10,240 KB
testcase_07 AC 12 ms
9,932 KB
testcase_08 AC 18 ms
10,296 KB
testcase_09 AC 18 ms
10,240 KB
testcase_10 AC 17 ms
10,204 KB
testcase_11 AC 15 ms
10,092 KB
testcase_12 AC 13 ms
10,112 KB
testcase_13 AC 6 ms
9,720 KB
testcase_14 AC 134 ms
15,360 KB
testcase_15 AC 135 ms
14,992 KB
testcase_16 AC 120 ms
14,772 KB
testcase_17 AC 82 ms
13,512 KB
testcase_18 AC 154 ms
15,984 KB
testcase_19 AC 182 ms
17,012 KB
testcase_20 AC 182 ms
17,012 KB
testcase_21 AC 195 ms
17,000 KB
testcase_22 AC 191 ms
16,912 KB
testcase_23 AC 189 ms
17,012 KB
testcase_24 AC 201 ms
16,876 KB
testcase_25 AC 199 ms
16,892 KB
testcase_26 AC 187 ms
17,012 KB
testcase_27 AC 181 ms
17,024 KB
testcase_28 AC 178 ms
16,884 KB
testcase_29 AC 135 ms
16,692 KB
testcase_30 AC 135 ms
16,692 KB
testcase_31 AC 104 ms
18,044 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:26:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   26 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<queue>
using namespace std;
int N;
vector<int>G[2<<17];
pair<int,int>f(int s)
{
	vector<int>d(N,1e9);
	d[s]=0;
	queue<int>P;
	P.push(s);
	pair<int,int>ret;
	while(!P.empty())
	{
		int u=P.front();P.pop();
		ret=make_pair(u,d[u]);
		for(int v:G[u])if(d[v]>d[u]+1)
		{
			d[v]=d[u]+1;
			P.push(v);
		}
	}
	return ret;
}
main()
{
	cin>>N;
	for(int i=1;i<N;i++)
	{
		int a,b;cin>>a>>b;
		a--,b--;
		G[a].push_back(b);
		G[b].push_back(a);
	}
	pair<int,int>p=f(0);
	pair<int,int>q=f(p.first);
	cout<<2*N-q.second-2<<endl;
}
0