結果

問題 No.1340 おーじ君をさがせ
ユーザー keymoonkeymoon
提出日時 2021-01-15 22:37:45
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 548 ms / 2,000 ms
コード長 3,009 bytes
コンパイル時間 4,077 ms
コンパイル使用メモリ 112,028 KB
実行使用メモリ 26,580 KB
最終ジャッジ日時 2023-08-18 16:40:45
合計ジャッジ時間 16,600 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
21,904 KB
testcase_01 AC 58 ms
19,868 KB
testcase_02 AC 59 ms
23,884 KB
testcase_03 AC 61 ms
21,976 KB
testcase_04 AC 63 ms
21,836 KB
testcase_05 AC 58 ms
22,056 KB
testcase_06 AC 59 ms
21,884 KB
testcase_07 AC 59 ms
21,844 KB
testcase_08 AC 58 ms
23,928 KB
testcase_09 AC 56 ms
21,844 KB
testcase_10 AC 61 ms
21,948 KB
testcase_11 AC 147 ms
21,976 KB
testcase_12 AC 73 ms
23,880 KB
testcase_13 AC 126 ms
19,952 KB
testcase_14 AC 254 ms
23,832 KB
testcase_15 AC 219 ms
23,924 KB
testcase_16 AC 71 ms
21,872 KB
testcase_17 AC 108 ms
21,880 KB
testcase_18 AC 144 ms
21,968 KB
testcase_19 AC 63 ms
21,912 KB
testcase_20 AC 58 ms
21,996 KB
testcase_21 AC 159 ms
23,860 KB
testcase_22 AC 306 ms
21,888 KB
testcase_23 AC 156 ms
23,972 KB
testcase_24 AC 530 ms
22,480 KB
testcase_25 AC 72 ms
23,976 KB
testcase_26 AC 68 ms
24,064 KB
testcase_27 AC 64 ms
21,844 KB
testcase_28 AC 78 ms
25,976 KB
testcase_29 AC 65 ms
21,916 KB
testcase_30 AC 167 ms
25,948 KB
testcase_31 AC 548 ms
22,524 KB
testcase_32 AC 518 ms
24,412 KB
testcase_33 AC 501 ms
24,316 KB
testcase_34 AC 469 ms
24,296 KB
testcase_35 AC 533 ms
26,580 KB
testcase_36 AC 57 ms
22,004 KB
testcase_37 AC 65 ms
23,828 KB
testcase_38 AC 543 ms
26,576 KB
testcase_39 AC 185 ms
25,992 KB
testcase_40 AC 185 ms
23,928 KB
testcase_41 AC 185 ms
25,884 KB
testcase_42 AC 59 ms
21,900 KB
testcase_43 AC 60 ms
23,884 KB
testcase_44 AC 59 ms
21,956 KB
testcase_45 AC 59 ms
23,900 KB
testcase_46 AC 149 ms
21,912 KB
testcase_47 AC 159 ms
21,948 KB
testcase_48 AC 170 ms
23,992 KB
testcase_49 AC 167 ms
21,880 KB
testcase_50 AC 174 ms
22,000 KB
testcase_51 AC 168 ms
21,884 KB
testcase_52 AC 279 ms
23,992 KB
testcase_53 AC 278 ms
24,012 KB
testcase_54 AC 285 ms
21,780 KB
testcase_55 AC 223 ms
21,976 KB
testcase_56 AC 60 ms
19,932 KB
testcase_57 AC 60 ms
21,764 KB
testcase_58 AC 57 ms
22,012 KB
testcase_59 AC 123 ms
23,928 KB
testcase_60 AC 61 ms
23,880 KB
testcase_61 AC 121 ms
19,816 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