結果

問題 No.2427 Tree Distance Two
ユーザー tailstails
提出日時 2023-08-21 13:29:49
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 860 bytes
コンパイル時間 606 ms
コンパイル使用メモリ 24,448 KB
実行使用メモリ 13,768 KB
最終ジャッジ日時 2024-05-08 18:50:37
合計ジャッジ時間 5,391 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
7,252 KB
testcase_03 AC 21 ms
11,916 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 20 ms
12,272 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 18 ms
13,228 KB
testcase_08 AC 17 ms
12,528 KB
testcase_09 AC 18 ms
13,768 KB
testcase_10 AC 16 ms
12,276 KB
testcase_11 AC 21 ms
12,800 KB
testcase_12 AC 21 ms
12,544 KB
testcase_13 AC 23 ms
13,144 KB
testcase_14 AC 10 ms
11,760 KB
testcase_15 AC 2 ms
7,260 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,948 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 2 ms
7,380 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 2 ms
7,384 KB
testcase_25 AC 5 ms
8,148 KB
testcase_26 AC 12 ms
9,764 KB
testcase_27 AC 9 ms
8,788 KB
testcase_28 AC 19 ms
11,496 KB
testcase_29 AC 17 ms
9,472 KB
testcase_30 AC 12 ms
7,296 KB
testcase_31 AC 7 ms
5,376 KB
testcase_32 AC 12 ms
7,168 KB
testcase_33 AC 11 ms
9,180 KB
testcase_34 AC 4 ms
7,768 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:43:9: warning: implicit declaration of function ‘write’ [-Wimplicit-function-declaration]
   43 |         write(1,wp,wbuf+sizeof wbuf-wp);
      |         ^~~~~
main.c:44:9: warning: implicit declaration of function ‘_exit’ [-Wimplicit-function-declaration]
   44 |         _exit(0);
      |         ^~~~~
main.c:44:9: warning: incompatible implicit declaration of built-in function ‘_exit’ [-Wbuiltin-declaration-mismatch]

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC target("avx2")

#define rd_init() char*rp=({char*mmap();mmap(0l,1l<<25,1,2,0,0ll);})
#define rd() ({long _v=0,_c;while(_c=*rp++-48,_c>=0)_v=_v*10+_c;_v;})
#define wt(v) ({unsigned _z=v;do*--wp=_z%10+48;while(_z/=10);})
#define rep(v,e) for(typeof(e) v=0;v<e;++v)
#define rrep(v,e) for(typeof(e) v=e;v--;)
#define rrep3(v,s,e) for(typeof(e) v=e;--v>=s;)

#define MAXN 300000
int en[MAXN+2];
int eb[MAXN<<1];
int uv[MAXN<<1];

char wbuf[1<<25];

int main(){
	rd_init();
	long n=rd();
	rep(j,n-1<<1){
		++en[uv[j]=rd()-1];
	}
	{
		int s=0;
		rep(i,n+1){
			en[i]=s+=en[i];
		}
	}
	rrep(j,n-1<<1){
		eb[--en[uv[j]]]=uv[j^1];
	}
	char*wp=wbuf+sizeof wbuf;
	rrep(i,n){
		int z=0;
		rrep3(k,en[i],en[i+1]){
			long j=eb[k];
			z+=en[j+1]-en[j]-1;
		}
		*--wp='\n';
		wt(z);
	}
	write(1,wp,wbuf+sizeof wbuf-wp);	
	_exit(0);
}
0