結果
問題 | No.1050 Zero (Maximum) |
ユーザー | keymoon |
提出日時 | 2020-05-08 21:38:37 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 177 ms / 2,000 ms |
コード長 | 5,270 bytes |
コンパイル時間 | 1,172 ms |
コンパイル使用メモリ | 115,876 KB |
実行使用メモリ | 27,228 KB |
最終ジャッジ日時 | 2024-07-04 00:10:58 |
合計ジャッジ時間 | 2,749 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
25,020 KB |
testcase_01 | AC | 27 ms
27,060 KB |
testcase_02 | AC | 57 ms
27,108 KB |
testcase_03 | AC | 47 ms
25,152 KB |
testcase_04 | AC | 118 ms
25,140 KB |
testcase_05 | AC | 124 ms
27,228 KB |
testcase_06 | AC | 66 ms
24,928 KB |
testcase_07 | AC | 77 ms
25,300 KB |
testcase_08 | AC | 29 ms
25,080 KB |
testcase_09 | AC | 48 ms
25,024 KB |
testcase_10 | AC | 146 ms
25,148 KB |
testcase_11 | AC | 113 ms
24,932 KB |
testcase_12 | AC | 26 ms
25,020 KB |
testcase_13 | AC | 25 ms
27,124 KB |
testcase_14 | AC | 25 ms
24,880 KB |
testcase_15 | AC | 24 ms
25,024 KB |
testcase_16 | AC | 166 ms
25,280 KB |
testcase_17 | AC | 177 ms
23,216 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Numerics; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; using static System.Math; using MethodImplAttribute = System.Runtime.CompilerServices.MethodImplAttribute; using MethodImplOptions = System.Runtime.CompilerServices.MethodImplOptions; public static class P { public static void Main() { var pk = Console.ReadLine().Split().Select(int.Parse).ToArray(); var p = pk[0]; var k = pk[1]; Matrix matrix = new Matrix(p, p); for (int i = 0; i < p; i++) { for (int j = 0; j < p; j++) { matrix[i, (i + j) % p]++; matrix[i, (i * j) % p]++; } } Matrix iv = new Matrix(p, 1); iv[0, 0] = 1; var res = Power(matrix, k) * iv; Console.WriteLine(res[0, 0]); } static Matrix Power(Matrix n, long m) { Matrix pow = n; Matrix res = new Matrix(n.Height, n.Width); for (int i = 0; i < n.Height; i++) res[i, i] = 1; while (m > 0) { if ((m & 1) == 1) res *= pow; pow *= pow; m >>= 1; } return res; } } class Matrix { public readonly int Height; public readonly int Width; ModInt[] data; [MethodImpl(MethodImplOptions.AggressiveInlining)] public Matrix(int height, int width) { data = new ModInt[height * width]; Height = height; Width = width; } public ModInt this[int i, int j] { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return data[i * Width + j]; } [MethodImpl(MethodImplOptions.AggressiveInlining)] set { data[i * Width + j] = value; } } [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Matrix Add(Matrix a, Matrix b) { var res = new Matrix(a.Height, a.Width); for (int i = 0; i < a.Height; i++) for (int j = 0; j < a.Width; j++) res[i, j] = a[i, j] + b[i, j]; return res; } [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Matrix Sub(Matrix a, Matrix b) { var res = new Matrix(a.Height, a.Width); for (int i = 0; i < a.Height; i++) for (int j = 0; j < a.Width; j++) res[i, j] = a[i, j] - b[i, j]; return res; } [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Matrix Mul(Matrix a, Matrix b) { var res = new Matrix(a.Height, b.Width); for (int i = 0; i < a.Height; i++) for (int j = 0; j < b.Width; j++) for (int k = 0; k < a.Width; k++) res[i, j] += a[i, k] * b[k, j]; return res; } [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Matrix operator +(Matrix a, Matrix b) => Add(a, b); [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Matrix operator -(Matrix a, Matrix b) => Sub(a, b); [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Matrix operator *(Matrix a, Matrix b) => Mul(a, b); } struct ModInt { public const int Mod = 1000000007; const long POSITIVIZER = ((long)Mod) << 31; long Data; public ModInt(long data) { if ((Data = data % Mod) < 0) Data += Mod; } public static implicit operator long(ModInt modInt) => modInt.Data; public static implicit operator ModInt(long val) => new ModInt(val); public static ModInt operator +(ModInt a, int b) => new ModInt() { Data = (a.Data + b + POSITIVIZER) % Mod }; public static ModInt operator +(ModInt a, long b) => new ModInt(a.Data + b); public static ModInt operator +(ModInt a, ModInt b) { long res = a.Data + b.Data; return new ModInt() { Data = res >= Mod ? res - Mod : res }; } public static ModInt operator -(ModInt a, int b) => new ModInt() { Data = (a.Data - b + POSITIVIZER) % Mod }; public static ModInt operator -(ModInt a, long b) => new ModInt(a.Data - b); public static ModInt operator -(ModInt a, ModInt b) { long res = a.Data - b.Data; return new ModInt() { Data = res < 0 ? res + Mod : res }; } public static ModInt operator *(ModInt a, int b) => new ModInt(a.Data * b); public static ModInt operator *(ModInt a, long b) => a * new ModInt(b); public static ModInt operator *(ModInt a, ModInt b) => new ModInt() { Data = a.Data * b.Data % Mod }; public static ModInt operator /(ModInt a, ModInt b) => new ModInt() { Data = a.Data * GetInverse(b) % Mod }; public static bool operator ==(ModInt a, ModInt b) => a.Data == b.Data; public static bool operator !=(ModInt a, ModInt b) => a.Data != b.Data; public override string ToString() => Data.ToString(); public override bool Equals(object obj) => (ModInt)obj == this; public override int GetHashCode() => (int)Data; static long GetInverse(long a) { long div, p = Mod, x1 = 1, y1 = 0, x2 = 0, y2 = 1; while (true) { if (p == 1) return x2 + Mod; div = a / p; x1 -= x2 * div; y1 -= y2 * div; a %= p; if (a == 1) return x1 + Mod; div = p / a; x2 -= x1 * div; y2 -= y1 * div; p %= a; } } }