結果

問題 No.2911 位相の公理
ユーザー kakel-sankakel-san
提出日時 2024-10-04 22:10:09
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 3,264 bytes
コンパイル時間 12,891 ms
コンパイル使用メモリ 165,836 KB
実行使用メモリ 189,184 KB
最終ジャッジ日時 2024-10-04 22:10:24
合計ジャッジ時間 10,414 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
30,592 KB
testcase_01 WA -
testcase_02 AC 50 ms
30,336 KB
testcase_03 AC 50 ms
30,336 KB
testcase_04 AC 50 ms
30,464 KB
testcase_05 AC 51 ms
30,712 KB
testcase_06 AC 51 ms
30,336 KB
testcase_07 AC 50 ms
30,464 KB
testcase_08 WA -
testcase_09 AC 49 ms
30,592 KB
testcase_10 AC 50 ms
30,208 KB
testcase_11 AC 51 ms
30,720 KB
testcase_12 AC 53 ms
30,464 KB
testcase_13 AC 51 ms
30,456 KB
testcase_14 AC 49 ms
30,208 KB
testcase_15 AC 49 ms
30,592 KB
testcase_16 AC 50 ms
30,316 KB
testcase_17 AC 50 ms
30,456 KB
testcase_18 AC 51 ms
30,976 KB
testcase_19 AC 54 ms
30,848 KB
testcase_20 AC 113 ms
31,224 KB
testcase_21 WA -
testcase_22 AC 52 ms
30,968 KB
testcase_23 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (92 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();
    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 s = new int[m];
        for (var i = 0; i < m; ++i)
        {
            var t = ReadLine();
            var si = 0;
            for (var j = 0; j < t.Length; ++j)
            {
                si <<= 1;
                si += t[j] - '0';
            }
            s[i] = si;
        }
        WriteLine(Judge(n, m, s) ? "Yes" : "No");
    }
    static bool Judge(int n, int m, int[] s)
    {
        var uf = new UnionFindTree(n);
        var isall1 = Enumerable.Repeat(true, n).ToArray();
        for (var l = 0; l < n; ++l)
        {
            for (var i = 0; i < m; ++i)
            {
                if (((s[i] >> l) & 1) == 0)
                {
                    isall1[l] = false;
                    break;
                }
            }
            for (var r = l + 1; r < n; ++r)
            {
                var flg = true;
                for (var i = 0; i < m; ++i)
                {
                    if (((s[i] >> l) & 1) != ((s[i] >> r) & 1))
                    {
                        flg = false;
                        break;
                    }
                }
                if (flg) uf.Unite(l, r);
            }
        }
        var set = new HashSet<int>(s);
        var bitmax = 1 << n;
        for (var b = 0; b < bitmax; ++b)
        {
            var flg = true;
            for (var l = 0; l < n; ++l) for (var r = l + 1; r < n; ++r)
            {
                if (!flg) break;
                if (uf.IsSameTree(l, r) && ((b >> l) & 1) != ((b >> r) & 1)) flg = false;
            }
            for (var l = 0; l < n; ++l)
            {
                if (!flg) break;
                if (isall1[l] && ((b >> l) & 1) == 0) flg = false;
            }
            if (flg && !set.Contains(b)) return false;
        }
        return true;
    }
    class UnionFindTree
    {
        int[] roots;
        public UnionFindTree(int size)
        {
            roots = new int[size];
            for (var i = 0; i < size; ++i) roots[i] = -1;
        }
        public int GetRoot(int a)
        {
            if (roots[a] < 0) return a;
            return roots[a] = GetRoot(roots[a]);
        }
        public bool IsSameTree(int a, int b)
        {
            return GetRoot(a) == GetRoot(b);
        }
        public bool Unite(int a, int b)
        {
            var x = GetRoot(a);
            var y = GetRoot(b);
            if (x == y) return false;
            if (-roots[x] < -roots[y]) { var tmp = x; x = y; y = tmp; }
            roots[x] += roots[y];
            roots[y] = x;
            return true;
        }
        public int GetSize(int a)
        {
            return -roots[GetRoot(a)];
        }
    }
}
0