結果

問題 No.2463 ストレートフラッシュ
ユーザー kakel-sankakel-san
提出日時 2023-09-14 23:16:28
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 1,392 bytes
コンパイル時間 2,728 ms
コンパイル使用メモリ 112,904 KB
実行使用メモリ 43,580 KB
最終ジャッジ日時 2024-07-02 05:35:51
合計ジャッジ時間 9,540 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
25,392 KB
testcase_01 AC 33 ms
25,088 KB
testcase_02 AC 33 ms
27,240 KB
testcase_03 AC 34 ms
27,032 KB
testcase_04 AC 34 ms
25,124 KB
testcase_05 AC 34 ms
23,092 KB
testcase_06 AC 33 ms
27,116 KB
testcase_07 AC 34 ms
25,372 KB
testcase_08 AC 34 ms
27,032 KB
testcase_09 AC 35 ms
25,120 KB
testcase_10 AC 35 ms
27,292 KB
testcase_11 AC 34 ms
25,392 KB
testcase_12 AC 33 ms
23,092 KB
testcase_13 AC 252 ms
39,504 KB
testcase_14 AC 288 ms
36,532 KB
testcase_15 AC 291 ms
40,120 KB
testcase_16 AC 292 ms
38,720 KB
testcase_17 AC 332 ms
40,508 KB
testcase_18 AC 355 ms
43,324 KB
testcase_19 AC 364 ms
41,412 KB
testcase_20 AC 363 ms
43,580 KB
testcase_21 AC 338 ms
41,404 KB
testcase_22 AC 354 ms
43,316 KB
testcase_23 AC 337 ms
41,404 KB
testcase_24 AC 339 ms
39,360 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 static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m) = (c[0], c[1]);
        var map = NArr(n * m);
        var pos = new int[n, m];
        for (var i = 0; i < map.Length; ++i) pos[map[i][0] - 1, map[i][1] - 1] = i + 1;
        var ans = int.MaxValue;
        for (var i = 0; i + 4 <= n; ++i) for (var j = 0; j < m; ++j)
        {
            var p = new int[] { pos[i, j], pos[(i + 1) % n, j], pos[(i + 2) % n, j], pos[(i + 3) % n, j], pos[(i + 4) % n, j] };
            Array.Sort(p);
            ans = Math.Min(ans, Draw(p));
        }
        WriteLine(ans - 1);
    }
    static int Draw(int[] p)
    {
        var i = 0;
        var ans = 0;
        var draw = 0;
        while (i < p.Length)
        {
            var ntime = (p[i] - draw + p.Length - i - 1) / (p.Length - i);
            ans += ntime;
            draw += ntime * (p.Length - i);
            while(i < p.Length && p[i] <= draw) ++i;
        }
        return ans;
    }
}
0