結果

問題 No.488 四角関係
ユーザー mbanmban
提出日時 2017-02-26 02:33:19
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 218 ms / 5,000 ms
コード長 4,347 bytes
コンパイル時間 4,108 ms
コンパイル使用メモリ 107,668 KB
実行使用メモリ 22,868 KB
最終ジャッジ日時 2023-09-02 08:41:00
合計ジャッジ時間 6,321 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
20,664 KB
testcase_01 AC 96 ms
22,732 KB
testcase_02 AC 100 ms
22,852 KB
testcase_03 AC 73 ms
22,808 KB
testcase_04 AC 83 ms
20,868 KB
testcase_05 AC 122 ms
20,664 KB
testcase_06 AC 118 ms
22,868 KB
testcase_07 AC 207 ms
20,696 KB
testcase_08 AC 218 ms
22,764 KB
testcase_09 AC 61 ms
20,736 KB
testcase_10 AC 69 ms
20,732 KB
testcase_11 AC 60 ms
20,724 KB
testcase_12 AC 66 ms
20,720 KB
testcase_13 AC 67 ms
22,772 KB
testcase_14 AC 61 ms
18,708 KB
testcase_15 AC 61 ms
22,744 KB
testcase_16 AC 60 ms
20,692 KB
testcase_17 AC 59 ms
22,836 KB
testcase_18 AC 60 ms
20,740 KB
testcase_19 AC 60 ms
20,836 KB
testcase_20 AC 60 ms
20,704 KB
testcase_21 AC 60 ms
22,868 KB
testcase_22 AC 63 ms
20,688 KB
testcase_23 AC 60 ms
20,792 KB
testcase_24 AC 61 ms
20,740 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