結果

問題 No.1105 Many Triplets
ユーザー tenten
提出日時 2021-11-24 11:22:22
言語 Java
(openjdk 23)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 2,163 bytes
コンパイル時間 2,548 ms
コンパイル使用メモリ 78,640 KB
実行使用メモリ 40,544 KB
最終ジャッジ日時 2024-06-26 10:53:27
合計ジャッジ時間 6,242 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long n = sc.nextLong() - 1;
        long[] ans = new long[3];
        for (int i = 0; i < 3; i++) {
            ans[i] = sc.nextInt();
        }
        long[][][] matrix = new long[63][3][3];
        matrix[0][0][0] = 1;
        matrix[0][0][1] = MOD - 1;
        matrix[0][1][1] = 1;
        matrix[0][1][2] = MOD - 1;
        matrix[0][2][2] = 1;
        matrix[0][2][0] = MOD - 1;
        for (int i = 1; i < 63; i++) {
            for (int j = 0; j < 3; j++) {
                for (int k = 0; k < 3; k++) {
                    for (int l = 0; l < 3; l++) {
                        matrix[i][j][l] += matrix[i - 1][j][k] * matrix[i - 1][k][l] % MOD;
                        matrix[i][j][l] %= MOD;
                    }
                }
            }
        }
        for (int i = 62; i >= 0; i--) {
            if (n < (1L << i)) {
                continue;
            }
            long[] next = new long[3];
            n -= (1L << i);
            for (int j = 0; j < 3; j++) {
                for (int k = 0; k < 3; k++) {
                    next[j] += matrix[i][j][k] * ans[k] % MOD;
                    next[j] %= MOD;
                }
            }
            ans = next;
        }
        System.out.println(ans[0] + " " + ans[1] + " " + ans[2]);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0