結果

問題 No.1878 union-find の数え上げ
ユーザー 37zigen37zigen
提出日時 2021-12-24 06:16:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 642 ms / 2,000 ms
コード長 1,905 bytes
コンパイル時間 2,172 ms
コンパイル使用メモリ 80,180 KB
実行使用メモリ 79,328 KB
最終ジャッジ日時 2024-10-03 09:23:51
合計ジャッジ時間 8,149 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 565 ms
79,328 KB
testcase_01 AC 615 ms
59,452 KB
testcase_02 AC 642 ms
59,268 KB
testcase_03 AC 542 ms
56,104 KB
testcase_04 AC 564 ms
55,456 KB
testcase_05 AC 357 ms
49,768 KB
testcase_06 AC 362 ms
50,024 KB
testcase_07 AC 115 ms
41,660 KB
testcase_08 AC 112 ms
41,888 KB
testcase_09 AC 119 ms
41,400 KB
testcase_10 AC 119 ms
41,720 KB
testcase_11 AC 103 ms
41,488 KB
testcase_12 AC 117 ms
41,452 KB
testcase_13 AC 110 ms
41,240 KB
testcase_14 AC 418 ms
53,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.File;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Random;
import java.util.Scanner;

class Main{
	
	final long p = 998244353;
	
	long ans=1;
	
	void dfs(int v, int d, ArrayList<Integer>[] g) {
		if (d > 0) ans = ans * d % p;
		for (int u : g[v]) {
			dfs(u, d + 1, g);
		}
	}
	
	void run() throws Exception {
        Scanner sc=new Scanner(System.in);
        PrintWriter pw=new PrintWriter(System.out);
        int N=sc.nextInt();
        ArrayList<Integer>[] g=new ArrayList[N];
        for (int i=0;i<N;++i) g[i]=new ArrayList<>();
        for (int i=1;i<N;++i) {
        	int p=sc.nextInt()-1;
        	g[p].add(i);
        }
        
        dfs(0, 0, g);
        
        System.out.println(ans);
        pw.close();
	}
	
//	void generate_random() throws Exception {
//		Random rnd=new Random();
//		for (int testcase=1;testcase<=5;++testcase) {
//			File file=new File("random_"+testcase);
//			PrintWriter pw=new PrintWriter(file);
//			int N=100000;
//			pw.println(N);
//			for (int i=2;i<=N;++i) {
//				int p=rnd.nextInt(1, i);
//				pw.println(p);
//			}			
//			pw.close();
//		}
//	}
//	
//	void generate_line() throws Exception {
//		File file=new File("line");
//		PrintWriter pw=new PrintWriter(file);
//		Random rnd=new Random();
//		int N=100000;
//		pw.println(N);
//		for (int i=2;i<=N;++i) {
//			int p=i-1;
//			pw.println(p);
//		}
//		pw.close();
//	}
//	
//	void generate_star() throws Exception {
//		File file=new File("star");
//		PrintWriter pw=new PrintWriter(file);
//		Random rnd=new Random();
//		int N=100000;
//		pw.println(N);
//		for (int i=2;i<=N;++i) {
//			int p=1;
//			pw.println(p);
//		}
//		pw.close();
//	}
	
    public static void main(String args[]) throws Exception {
    	new Main().run();
    }
    
    void tr(Object...o) {
    	System.out.println(Arrays.deepToString(o));
    }
}
0