結果

問題 No.488 四角関係
ユーザー mbanmban
提出日時 2017-02-26 02:33:19
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 158 ms / 5,000 ms
コード長 4,347 bytes
コンパイル時間 946 ms
コンパイル使用メモリ 108,160 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2024-06-11 15:34:25
合計ジャッジ時間 3,116 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
18,048 KB
testcase_01 AC 55 ms
17,920 KB
testcase_02 AC 56 ms
18,048 KB
testcase_03 AC 34 ms
18,048 KB
testcase_04 AC 43 ms
18,048 KB
testcase_05 AC 75 ms
18,176 KB
testcase_06 AC 77 ms
18,048 KB
testcase_07 AC 153 ms
17,920 KB
testcase_08 AC 158 ms
18,176 KB
testcase_09 AC 23 ms
18,048 KB
testcase_10 AC 30 ms
17,920 KB
testcase_11 AC 23 ms
18,048 KB
testcase_12 AC 26 ms
18,048 KB
testcase_13 AC 28 ms
18,176 KB
testcase_14 AC 23 ms
17,920 KB
testcase_15 AC 22 ms
17,920 KB
testcase_16 AC 22 ms
18,176 KB
testcase_17 AC 20 ms
17,920 KB
testcase_18 AC 21 ms
18,048 KB
testcase_19 AC 22 ms
17,792 KB
testcase_20 AC 23 ms
17,792 KB
testcase_21 AC 22 ms
17,920 KB
testcase_22 AC 21 ms
18,048 KB
testcase_23 AC 22 ms
17,792 KB
testcase_24 AC 22 ms
18,176 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.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;

class Program
{
    static void Main(string[] args)
    {
        new Magatro().Solve();
    }
}

public class Scanner
{
    private StreamReader Sr;

    private string[] S;
    private int Index;
    private const char Separator = ' ';

    public Scanner(Stream source)
    {
        Index = 0;
        S = new string[0];
        Sr = new StreamReader(source);
    }

    private string[] Line()
    {
        return Sr.ReadLine().Split(Separator);
    }

    public string Next()
    {
        string result;
        if (Index >= S.Length)
        {
            S = Line();
            Index = 0;
        }
        result = S[Index];
        Index++;
        return result;
    }
    public int NextInt()
    {
        return int.Parse(Next());
    }
    public double NextDouble()
    {
        return double.Parse(Next());
    }
    public long NextLong()
    {
        return long.Parse(Next());
    }
    public decimal NextDecimal()
    {
        return decimal.Parse(Next());
    }
    public string[] StringArray(int index = 0)
    {
        Next();
        Index = S.Length;
        return S.Skip(index).ToArray();
    }
    public int[] IntArray(int index = 0)
    {
        return StringArray(index).Select(int.Parse).ToArray();
    }
    public long[] LongArray(int index = 0)
    {
        return StringArray(index).Select(long.Parse).ToArray();
    }
    public bool EndOfStream
    {
        get { return Sr.EndOfStream; }
    }
}

public class Magatro
{
    private Scanner Cin;
    private int N, M;
    private int[] a, b;
    private List<int>[] L;
    private void Scan()
    {
        Cin = new Scanner(Console.OpenStandardInput());
        N = Cin.NextInt();
        M = Cin.NextInt();
        a = new int[M];
        b = new int[M];
        for (int i = 0; i < M; i++)
        {
            a[i] = Cin.NextInt();
            b[i] = Cin.NextInt();
        }
    }

    public void Solve()
    {
        Scan();
        L = new List<int>[N];
        for (int i = 0; i < N; i++)
        {
            L[i] = new List<int>();
        }
        for (int i = 0; i < M; i++)
        {
            L[a[i]].Add(b[i]);
            L[b[i]].Add(a[i]);
        }
        int counter = 0;
        for (int i = 0; i < N - 3; i++)
        {
            for (int j = i + 1; j < N - 2; j++)
            {
                for (int k = j + 1; k < N - 1; k++)
                {
                    for (int l = k + 1; l < N; l++)
                    {
                        if (IsShikaku(i, j, k, l))
                        {
                            //Console.WriteLine($"{i} {j} {k} {l}");
                            counter++;
                        }
                    }
                }
            }
        }
        Console.WriteLine(counter);
    }

    private bool IsShikaku(int a, int b, int c, int d)
    {
        bool bb, cc, dd;
        bb = L[a].Contains(b);
        cc = L[a].Contains(c);
        dd = L[a].Contains(d);
        if (IsSankaku(a, b, c)) return false;
        if (IsSankaku(a, b, d)) return false;
        if (IsSankaku(a, c, d)) return false;
        if (IsSankaku(b, c, d)) return false;


        //Console.WriteLine($"{a} {b}{bb} {c}{cc} {d}{dd}");
        if (bb)
        {
            if (cc)
            {
                if (!L[b].Contains(c))
                {
                    if (L[d].Contains(b) && L[d].Contains(c)) return true;
                }
            }
            if (dd)
            {
                if (!L[b].Contains(d))
                {
                    if (L[c].Contains(b) && L[c].Contains(d)) return true;
                }
            }
        }
        if (cc)
        {
            if (dd)
            {
                if (!L[c].Contains(d))
                {
                    if (L[b].Contains(c) && L[b].Contains(d)) return true;
                }
            }
        }
        return false;
    }

    private bool IsSankaku(int a,int b,int c)
    {
        if (L[a].Contains(b))
        {
            if (L[a].Contains(c))
            {
                if (L[b].Contains(c)) return true;
            }
        }
        return false;
    }
}
0