結果

問題 No.541 3 x N グリッド上のサイクルの個数
ユーザー 37zigen37zigen
提出日時 2017-07-01 06:09:29
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,731 bytes
コンパイル時間 1,917 ms
コンパイル使用メモリ 79,472 KB
実行使用メモリ 56,016 KB
最終ジャッジ日時 2024-10-05 03:08:53
合計ジャッジ時間 10,824 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,452 KB
testcase_01 AC 107 ms
52,752 KB
testcase_02 AC 118 ms
53,956 KB
testcase_03 AC 119 ms
53,908 KB
testcase_04 AC 105 ms
52,384 KB
testcase_05 AC 121 ms
53,796 KB
testcase_06 AC 118 ms
54,332 KB
testcase_07 AC 116 ms
53,836 KB
testcase_08 AC 127 ms
53,804 KB
testcase_09 AC 121 ms
53,832 KB
testcase_10 AC 109 ms
52,668 KB
testcase_11 AC 109 ms
52,764 KB
testcase_12 AC 124 ms
53,912 KB
testcase_13 AC 109 ms
52,904 KB
testcase_14 AC 114 ms
52,880 KB
testcase_15 AC 126 ms
53,960 KB
testcase_16 AC 123 ms
53,688 KB
testcase_17 AC 115 ms
54,400 KB
testcase_18 AC 129 ms
53,828 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 104 ms
52,896 KB
testcase_30 AC 109 ms
52,912 KB
testcase_31 AC 110 ms
52,884 KB
testcase_32 AC 122 ms
53,880 KB
testcase_33 AC 119 ms
53,996 KB
testcase_34 AC 117 ms
54,080 KB
testcase_35 AC 119 ms
54,000 KB
testcase_36 AC 106 ms
52,728 KB
testcase_37 AC 115 ms
53,888 KB
testcase_38 AC 107 ms
52,856 KB
testcase_39 AC 111 ms
53,436 KB
testcase_40 AC 123 ms
53,908 KB
testcase_41 AC 122 ms
54,192 KB
testcase_42 AC 122 ms
53,836 KB
testcase_43 AC 123 ms
54,268 KB
testcase_44 AC 125 ms
53,968 KB
testcase_45 AC 122 ms
54,112 KB
testcase_46 AC 122 ms
53,824 KB
testcase_47 AC 124 ms
53,948 KB
testcase_48 AC 124 ms
53,772 KB
testcase_49 AC 113 ms
52,840 KB
testcase_50 AC 119 ms
53,960 KB
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 RE -
testcase_57 RE -
testcase_58 RE -
testcase_59 RE -
testcase_60 RE -
testcase_61 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package 郵便配達;

import java.io.FileNotFoundException;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws FileNotFoundException {
		new Main().run();
	}

	final long MODULO = 1_000_000_000 + 7;

	void run() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		// (1,4)
		// (2,3)
		// (2,4)
		// (3,4)
		// (1,2)
		// (1,3)
		// (1,2),(3,4)
		// (1,4),(2,3)
		// s
		// t
		long[][] mt = {
				{ 1, 1, 1, 1, 1, 1, 1, 0, 1, 0 }, 
				{ 1, 1, 1, 0, 0, 1, 0, 0, 1, 0 },
				{ 1, 1, 1, 1, 0, 1, 0, 0, 1, 0 }, 
				{ 1, 0, 1, 1, 0, 0, 0, 1, 1, 0 }, 
				{ 1, 0, 0, 0, 1, 1, 0, 1, 1, 0 },
				{ 1, 1, 1, 0, 1, 1, 0, 0, 1, 0 },
				{ 0, 0, 0, 1, 1, 0, 1, 0, 1, 0 },
				{ 1, 0, 0, 0, 0, 0, 0, 1, 0, 0 },
				{ 0, 0, 0, 0, 0, 0, 0, 0, 1, 0 },
				{ 1, 1, 1, 1, 1, 1, 0, 1, 0, 1 } };
		mt = pow(mt, n + 1);
		long[][] v = { { 0 }, { 0 }, { 0 }, { 0 }, { 0 }, { 0 }, { 0 }, { 0 }, { 1 }, { 0 } };
		v = mul(mt, v);
		System.out.println(v[9][0]);
	}

	long[][] pow(long[][] a, int n) {
		long[][] ret = new long[a.length][a.length];
		for (int i = 0; i < ret.length; ++i)
			ret[i][i] = 1;
		for (; n > 0; n >>= 1, a = mul(a, a)) {
			if (n % 2 == 1) {
				ret = mul(ret, a);
			}
		}
		return ret;
	}

	long[][] mul(long[][] a, long[][] b) {
		long[][] ret = new long[a.length][b[0].length];
		int m = a[0].length;
		assert a[0].length == b.length;
		for (int i = 0; i < a.length; ++i) {
			for (int j = 0; j < b[i].length; ++j) {
				for (int k = 0; k < m; ++k) {
					ret[i][j] = (ret[i][j] + a[i][k] * b[k][j] % MODULO) % MODULO;
				}
			}
		}
		return ret;
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0