結果

問題 No.1340 おーじ君をさがせ
ユーザー keymoonkeymoon
提出日時 2021-01-15 22:35:44
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,998 bytes
コンパイル時間 1,047 ms
コンパイル使用メモリ 109,440 KB
実行使用メモリ 22,760 KB
最終ジャッジ日時 2024-05-05 02:53:18
合計ジャッジ時間 7,439 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
18,944 KB
testcase_01 AC 28 ms
19,200 KB
testcase_02 AC 29 ms
19,200 KB
testcase_03 AC 29 ms
19,200 KB
testcase_04 WA -
testcase_05 AC 29 ms
19,072 KB
testcase_06 WA -
testcase_07 AC 28 ms
19,072 KB
testcase_08 AC 29 ms
18,944 KB
testcase_09 AC 28 ms
19,072 KB
testcase_10 RE -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 107 ms
19,328 KB
testcase_14 AC 252 ms
19,104 KB
testcase_15 AC 214 ms
19,456 KB
testcase_16 WA -
testcase_17 AC 92 ms
19,072 KB
testcase_18 AC 143 ms
19,456 KB
testcase_19 AC 33 ms
18,944 KB
testcase_20 WA -
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 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 28 ms
18,944 KB
testcase_45 AC 28 ms
18,944 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 165 ms
19,108 KB
testcase_50 AC 168 ms
18,976 KB
testcase_51 AC 166 ms
19,108 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 RE -
testcase_57 AC 28 ms
19,200 KB
testcase_58 AC 29 ms
19,200 KB
testcase_59 WA -
testcase_60 AC 29 ms
19,200 KB
testcase_61 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

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 nmt = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var n = nmt[0];
        var m = nmt[1];
        var t = nmt[2];
        Matrix mat = new Matrix(n, n);
        for (int i = 0; i < m; i++)
        {
            var ab = Console.ReadLine().Split().Select(int.Parse).ToArray();
            var a = ab[0];
            var b = ab[1];
            mat[a, b] = true;
        }
        Matrix iv = new Matrix(n, 1);
        iv[0, 0] = true;
        var res = Power(mat, t) * iv;
        Console.WriteLine(Enumerable.Range(0, n).Count(x => res[x, 0]));
    }

    static Matrix Power(Matrix n, long m)
    {
        Matrix pow = n;
        Matrix res = Matrix.Delta(n.Height, true);
        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;
    bool[] data;
    [MethodImpl(MethodImplOptions.AggressiveInlining)]
    public Matrix(int height, int width)
    {
        data = new bool[height * width];
        Height = height;
        Width = width;
    }
    public bool 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 Delta(int n, bool val)
    {
        var res = new Matrix(n, n);
        for (int i = 0; i < n; i++) res[i, i] = val;
        return res;
    }
    [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 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) => Mul(a, b);
}
0