結果

問題 No.1241 Eternal Tours
ユーザー 👑 hitonanodehitonanode
提出日時 2020-09-07 01:10:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 862 ms / 6,000 ms
コード長 3,793 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 77,508 KB
実行使用メモリ 103,888 KB
最終ジャッジ日時 2024-05-07 00:01:17
合計ジャッジ時間 21,558 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
57,300 KB
testcase_01 AC 156 ms
57,124 KB
testcase_02 AC 684 ms
83,280 KB
testcase_03 AC 164 ms
57,284 KB
testcase_04 AC 159 ms
56,828 KB
testcase_05 AC 152 ms
56,800 KB
testcase_06 AC 157 ms
56,932 KB
testcase_07 AC 161 ms
56,992 KB
testcase_08 AC 162 ms
56,952 KB
testcase_09 AC 157 ms
57,120 KB
testcase_10 AC 159 ms
57,132 KB
testcase_11 AC 162 ms
57,140 KB
testcase_12 AC 154 ms
57,280 KB
testcase_13 AC 160 ms
57,536 KB
testcase_14 AC 501 ms
73,408 KB
testcase_15 AC 157 ms
57,248 KB
testcase_16 AC 393 ms
62,108 KB
testcase_17 AC 720 ms
103,096 KB
testcase_18 AC 700 ms
90,084 KB
testcase_19 AC 627 ms
87,068 KB
testcase_20 AC 181 ms
57,372 KB
testcase_21 AC 224 ms
58,936 KB
testcase_22 AC 758 ms
96,124 KB
testcase_23 AC 261 ms
61,312 KB
testcase_24 AC 154 ms
57,080 KB
testcase_25 AC 160 ms
57,260 KB
testcase_26 AC 157 ms
57,364 KB
testcase_27 AC 157 ms
56,612 KB
testcase_28 AC 840 ms
83,336 KB
testcase_29 AC 654 ms
83,168 KB
testcase_30 AC 676 ms
83,220 KB
testcase_31 AC 407 ms
72,960 KB
testcase_32 AC 734 ms
102,892 KB
testcase_33 AC 613 ms
86,880 KB
testcase_34 AC 825 ms
83,280 KB
testcase_35 AC 809 ms
83,316 KB
testcase_36 AC 153 ms
57,012 KB
testcase_37 AC 157 ms
57,036 KB
testcase_38 AC 629 ms
87,108 KB
testcase_39 AC 602 ms
89,416 KB
testcase_40 AC 801 ms
83,192 KB
testcase_41 AC 808 ms
103,888 KB
testcase_42 AC 595 ms
88,932 KB
testcase_43 AC 862 ms
83,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    final static long md = 998244353;
    final static long root = 3;

    final static long w[] = new long[1 << 17];
    final static long iw[] = new long[1 << 17];

    static void ntt(int n, long[] a)
    {
        for (int m = n / 2; m > 0; m /= 2)
        {
            for (int s = 0, k = 0; s < n; s += 2 * m, k++)
            {
                for (int i = s; i < s + m; i++)
                {
                    long x = a[i], y = a[i + m] * w[k] % md;
                    a[i] = (x + y >= md ? x + y - md : x + y);
                    a[i + m] = (x - y < 0 ? x + md - y : x - y);
                }
            }
        }
    }
    static void intt(int n, long[] a)
    {
        for (int m = 1; m < n; m *= 2)
        {
            for (int s = 0, k = 0; s < n; s += 2 * m, k++)
            {
                for (int i = s; i < s + m; i++)
                {
                    long x = a[i], y = a[i + m];
                    a[i] = (x + y >= md ? x + y - md : x + y);
                    a[i + m] = (x - y + md) * iw[k] % md;
                }
            }
        }
    }

    static long power(long x, long n)
    {
        if (n == -1)
        {
            n = md - 2;
        }
        x %= md;
        long ans = 1;
        long tmp = x;
        while (n > 0)
        {
            if ((n & 1) == 1)
            {
                ans = ans * tmp % md;
            }
            tmp = tmp * tmp % md;
            n /= 2;
        }
        return ans;
    }

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        final int X = sc.nextInt();
        final int Y = sc.nextInt();
        final long T = (sc.nextLong() - 1) % (md - 1) + 1;
        final int a = sc.nextInt();
        final int b = sc.nextInt();
        final int c = sc.nextInt();
        final int d = sc.nextInt();

        final int H = 1 << (X + 1);
        final int W = 1 << (Y + 1);

        final long dp[][] = new long[H][W];
        final long trans[][] = new long[H][W];

        dp[a][b] = 1;
        dp[a][W - b] = -1;
        dp[H - a][b] = -1;
        dp[H - a][W - b] = 1;
        trans[0][0] = trans[0][1] = trans[1][0] = trans[H - 1][0] = trans[0][W - 1] = 1;

        w[0] = iw[0] = 1;
        for (int m = 1; m < 1 << 17; m *= 2)
        {
            long dw = power(root, (md - 1) / (4 * m));
            long dwinv = power(dw, -1);
            for (int i = 0; i < m; i++)
            {
                w[m + i] = w[i] * dw % md;
                iw[m + i] = iw[i] * dwinv % md;
            }
        }

        for (int i = 0; i < H; i++)
        {
            ntt(W, dp[i]);
            ntt(W, trans[i]);
        }
        for (int j = 0; j < W; j++)
        {
            long dpv[] = new long[H];
            long transv[] = new long[H];
            for (int i = 0; i < H; i++)
            {
                dpv[i] = dp[i][j];
                transv[i] = trans[i][j];
            }
            ntt(H, dpv);
            ntt(H, transv);
            for (int i = 0; i < H; i++)
            {
                dp[i][j] = dpv[i];
                trans[i][j] = transv[i];
            }
        }

        for (int i = 0; i < H; i++)
        {
            for (int j = 0; j < W; j++)
            {
                dp[i][j] = dp[i][j] * power(trans[i][j], T) % md;
            }
        }

        for (int j = 0; j < W; j++)
        {
            long dpv[] = new long[H];
            for (int i = 0; i < H; i++)
            {
                dpv[i] = dp[i][j];
            }
            intt(H, dpv);
            for (int i = 0; i < H; i++)
            {
                dp[i][j] = dpv[i];
            }
        }
        intt(W, dp[c]);
        System.out.println(dp[c][d] * power(H * W, -1) % md);
    }
}
0