結果

問題 No.1340 おーじ君をさがせ
ユーザー keymoonkeymoon
提出日時 2021-01-15 22:37:45
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 551 ms / 2,000 ms
コード長 3,009 bytes
コンパイル時間 2,181 ms
コンパイル使用メモリ 116,264 KB
実行使用メモリ 23,040 KB
最終ジャッジ日時 2024-05-05 21:52:04
合計ジャッジ時間 12,521 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
19,072 KB
testcase_01 AC 30 ms
19,072 KB
testcase_02 AC 31 ms
19,200 KB
testcase_03 AC 31 ms
18,816 KB
testcase_04 AC 31 ms
18,816 KB
testcase_05 AC 31 ms
18,816 KB
testcase_06 AC 31 ms
19,072 KB
testcase_07 AC 32 ms
18,816 KB
testcase_08 AC 30 ms
18,816 KB
testcase_09 AC 30 ms
18,944 KB
testcase_10 AC 31 ms
19,072 KB
testcase_11 AC 121 ms
19,200 KB
testcase_12 AC 48 ms
18,944 KB
testcase_13 AC 97 ms
18,944 KB
testcase_14 AC 219 ms
18,872 KB
testcase_15 AC 184 ms
19,200 KB
testcase_16 AC 44 ms
19,072 KB
testcase_17 AC 82 ms
19,200 KB
testcase_18 AC 122 ms
19,072 KB
testcase_19 AC 35 ms
19,200 KB
testcase_20 AC 32 ms
19,200 KB
testcase_21 AC 131 ms
22,528 KB
testcase_22 AC 282 ms
21,632 KB
testcase_23 AC 147 ms
22,784 KB
testcase_24 AC 511 ms
20,224 KB
testcase_25 AC 48 ms
22,528 KB
testcase_26 AC 42 ms
21,120 KB
testcase_27 AC 38 ms
20,608 KB
testcase_28 AC 53 ms
22,144 KB
testcase_29 AC 37 ms
20,736 KB
testcase_30 AC 156 ms
22,656 KB
testcase_31 AC 523 ms
22,656 KB
testcase_32 AC 485 ms
22,912 KB
testcase_33 AC 551 ms
22,912 KB
testcase_34 AC 432 ms
22,528 KB
testcase_35 AC 525 ms
23,040 KB
testcase_36 AC 30 ms
19,072 KB
testcase_37 AC 40 ms
22,272 KB
testcase_38 AC 514 ms
22,656 KB
testcase_39 AC 179 ms
22,656 KB
testcase_40 AC 186 ms
22,528 KB
testcase_41 AC 187 ms
22,520 KB
testcase_42 AC 32 ms
19,072 KB
testcase_43 AC 30 ms
18,816 KB
testcase_44 AC 31 ms
18,816 KB
testcase_45 AC 31 ms
19,072 KB
testcase_46 AC 140 ms
19,836 KB
testcase_47 AC 147 ms
19,712 KB
testcase_48 AC 159 ms
19,840 KB
testcase_49 AC 157 ms
19,012 KB
testcase_50 AC 158 ms
19,008 KB
testcase_51 AC 159 ms
18,892 KB
testcase_52 AC 276 ms
19,132 KB
testcase_53 AC 268 ms
19,008 KB
testcase_54 AC 276 ms
18,756 KB
testcase_55 AC 220 ms
19,564 KB
testcase_56 AC 32 ms
19,072 KB
testcase_57 AC 31 ms
18,944 KB
testcase_58 AC 31 ms
18,688 KB
testcase_59 AC 105 ms
19,072 KB
testcase_60 AC 31 ms
19,072 KB
testcase_61 AC 104 ms
19,200 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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(long.Parse).ToArray();
        var n = (int)nmt[0];
        var m = (int)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[b, a] = 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