結果

問題 No.1717 Levi-Civita Triangle
ユーザー kakel-sankakel-san
提出日時 2021-10-22 23:33:49
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 1,468 bytes
コンパイル時間 2,127 ms
コンパイル使用メモリ 112,316 KB
実行使用メモリ 44,052 KB
最終ジャッジ日時 2024-09-23 08:11:41
合計ジャッジ時間 5,662 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 42
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Generic;
using static System.Console;
using System.Linq;

class yuki319
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(int n) => Enumerable.Repeat(0, n).Select(_ => NList).ToArray();
    static void Main()
    {
        var n = NN;
        var a = NList;
        var list = LCT(a);
        if (Check(list))
        {
            WriteLine(list.Last());
        }
        else
        {
            WriteLine(0);
        }
    }
    static bool Check(List<int> list)
    {
        if (list.Count == 1) return true;
        for (var i = 1; i < list.Count; i += 2) if (list[i] != 0) return false;
        if (list[0] == 0 || list[2] == 0 || list[0] == list[2]) return false;
        for (var i = 4; i < list.Count; i += 4) if (list[0] != list[i]) return false;
        for (var i = 6; i < list.Count; i += 4) if (list[2] != list[i]) return false;
        return true;
    }
    static List<int> LCT(int[] list)
    {
        var nl = new List<int>(list.Length - 2);
        for (var i = 0; i < list.Length - 2; ++i)
        {
            if (list[i] == (list[i + 1] + 1) % 3 && list[i] == (list[i + 2] + 2) % 3) nl.Add(2);
            else if (list[i + 1] == (list[i] + 1) % 3 && list[i + 2] == (list[i] + 2) % 3) nl.Add(1);
            else nl.Add(0);
        }
        return nl;
    }
}
0