結果

問題 No.1384 Bishop and Rook
ユーザー kakel-sankakel-san
提出日時 2024-07-25 00:06:27
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 347 ms / 2,000 ms
コード長 3,161 bytes
コンパイル時間 9,752 ms
コンパイル使用メモリ 169,932 KB
実行使用メモリ 187,624 KB
最終ジャッジ日時 2024-07-25 00:06:49
合計ジャッジ時間 20,522 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
30,080 KB
testcase_01 AC 264 ms
92,956 KB
testcase_02 AC 174 ms
56,832 KB
testcase_03 AC 129 ms
45,688 KB
testcase_04 AC 111 ms
50,304 KB
testcase_05 AC 175 ms
67,200 KB
testcase_06 AC 236 ms
82,048 KB
testcase_07 AC 250 ms
92,928 KB
testcase_08 AC 229 ms
73,104 KB
testcase_09 AC 62 ms
31,224 KB
testcase_10 AC 176 ms
66,048 KB
testcase_11 AC 61 ms
30,720 KB
testcase_12 AC 95 ms
38,528 KB
testcase_13 AC 61 ms
31,104 KB
testcase_14 AC 312 ms
110,336 KB
testcase_15 AC 60 ms
30,976 KB
testcase_16 AC 347 ms
122,092 KB
testcase_17 AC 62 ms
30,620 KB
testcase_18 AC 64 ms
31,232 KB
testcase_19 AC 301 ms
107,776 KB
testcase_20 AC 63 ms
30,976 KB
testcase_21 AC 67 ms
31,872 KB
testcase_22 AC 62 ms
32,256 KB
testcase_23 AC 67 ms
31,872 KB
testcase_24 AC 91 ms
38,656 KB
testcase_25 AC 67 ms
32,128 KB
testcase_26 AC 90 ms
38,144 KB
testcase_27 AC 66 ms
31,744 KB
testcase_28 AC 65 ms
32,356 KB
testcase_29 AC 67 ms
32,384 KB
testcase_30 AC 66 ms
31,992 KB
testcase_31 AC 61 ms
31,360 KB
testcase_32 AC 63 ms
31,616 KB
testcase_33 AC 62 ms
31,872 KB
testcase_34 AC 65 ms
31,616 KB
testcase_35 AC 65 ms
31,488 KB
testcase_36 AC 63 ms
31,488 KB
testcase_37 AC 63 ms
31,104 KB
testcase_38 AC 63 ms
31,232 KB
testcase_39 AC 61 ms
31,360 KB
testcase_40 AC 66 ms
31,104 KB
testcase_41 AC 112 ms
45,184 KB
testcase_42 AC 127 ms
45,024 KB
testcase_43 AC 121 ms
46,568 KB
testcase_44 AC 119 ms
48,384 KB
testcase_45 AC 136 ms
48,100 KB
testcase_46 AC 131 ms
46,336 KB
testcase_47 AC 118 ms
46,336 KB
testcase_48 AC 136 ms
46,976 KB
testcase_49 AC 100 ms
42,368 KB
testcase_50 AC 113 ms
42,624 KB
testcase_51 AC 60 ms
30,592 KB
testcase_52 AC 341 ms
123,784 KB
testcase_53 AC 191 ms
66,944 KB
testcase_54 AC 60 ms
30,400 KB
testcase_55 AC 60 ms
187,624 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (99 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

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();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var t = NN;
        var ans = new string[t];
        for (var u = 0; u < t; ++u)
        {
            var c = NList;
            ans[u] = Bis(c[0], c[1]);
        }
        WriteLine(string.Join("\n", ans));
    }
    static string Bis(int h, int w)
    {
        if (h == 1 && w == 1) return "0\n1 1";
        if (h % 2 == 1 || w % 2 == 1) return "-1";
        var t = new System.Text.StringBuilder();
        var ans = new List<string>();
        ans.Add((h * w - 1).ToString());
        var x = 0;
        var y = 1;
        var mx4 = new int[] { 1, 1, -1, 1 };
        var my4 = new int[] { 0, 1, 0, -1 };
        if (w == 2)
        {
            for (var i = 0; i < h * w; ++i)
            {
                x += mx4[i % 4];
                y += my4[i % 4];
                ans.Add($"{x} {y}");
            }
            return string.Join("\n", ans);
        }
        var mx1 = new int[] { 1, 1, 0, -1 };
        var my1 = new int[] { 0, 1, -1, 1 };
        var mx2 = new int[] { 0, 1, 0, -1 };
        var my2 = new int[] { 1, 1, -1, 1 };
        var mx3 = new int[] { 0, 1, -1, 1 };
        var my3 = new int[] { 1, 1, 0, -1 };
        var mx5 = new int[] { 0, -1, 0, 1 };
        var my5 = new int[] { -1, -1, 1, -1 };
        for (var i = 0; i < h; i += 2)
        {
            if (i % 4 == 0)
            {
                for (var j = 0; j < w; j += 2)
                {
                    for (var p = 0; p < 4; ++p)
                    {
                        if (j == 0)
                        {
                            x += mx1[p];
                            y += my1[p];
                        }
                        else if (j + 2 < w)
                        {
                            x += mx2[p];
                            y += my2[p];
                        }
                        else
                        {
                            x += mx3[p];
                            y += my3[p];
                        }
                        ans.Add($"{x} {y}");
                    }
                }
            }
            else
            {
                for (var j = w - 2; j >= 0; j -= 2)
                {
                    for (var p = 0; p < 4; ++p)
                    {
                        if (j + 2 == w)
                        {
                            x += mx4[p];
                            y += my4[p];
                        }
                        else
                        {
                            x += mx5[p];
                            y += my5[p];
                        }
                        ans.Add($"{x} {y}");
                    }
                }
            }
        }
        return string.Join("\n", ans);
    }
}
0