結果

問題 No.1690 Power Grid
ユーザー kakel-sankakel-san
提出日時 2024-01-01 23:57:51
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 312 ms / 3,000 ms
コード長 2,520 bytes
コンパイル時間 8,190 ms
コンパイル使用メモリ 168,600 KB
実行使用メモリ 185,208 KB
最終ジャッジ日時 2024-09-27 17:37:11
合計ジャッジ時間 13,328 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
30,592 KB
testcase_01 AC 63 ms
30,464 KB
testcase_02 AC 62 ms
30,336 KB
testcase_03 AC 61 ms
30,976 KB
testcase_04 AC 62 ms
30,848 KB
testcase_05 AC 62 ms
30,336 KB
testcase_06 AC 153 ms
33,448 KB
testcase_07 AC 155 ms
33,320 KB
testcase_08 AC 153 ms
32,924 KB
testcase_09 AC 153 ms
33,328 KB
testcase_10 AC 72 ms
33,276 KB
testcase_11 AC 259 ms
33,284 KB
testcase_12 AC 63 ms
30,336 KB
testcase_13 AC 68 ms
31,104 KB
testcase_14 AC 83 ms
31,488 KB
testcase_15 AC 311 ms
32,940 KB
testcase_16 AC 170 ms
32,924 KB
testcase_17 AC 133 ms
32,236 KB
testcase_18 AC 91 ms
31,488 KB
testcase_19 AC 172 ms
33,284 KB
testcase_20 AC 180 ms
32,896 KB
testcase_21 AC 70 ms
33,300 KB
testcase_22 AC 288 ms
32,900 KB
testcase_23 AC 289 ms
33,160 KB
testcase_24 AC 306 ms
33,284 KB
testcase_25 AC 311 ms
32,896 KB
testcase_26 AC 312 ms
33,052 KB
testcase_27 AC 65 ms
185,208 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (102 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, k) = (c[0], c[1], c[2]);
        var a = NList;
        var map = NArr(m);
        var inf = long.MaxValue / 2;
        var len = new long[n, n];
        for (var i = 0; i < n; ++i) for (var j = 0; j < n; ++j) len[i, j] = inf;
        foreach (var road in map)
        {
            len[road[0] - 1, road[1] - 1] = road[2];
            len[road[1] - 1, road[0] - 1] = road[2];
        }
        for (var z = 0; z < n; ++z) for (var x = 0; x < n; ++x) for (var y = 0; y < n; ++y)
        {
            len[x, y] = Math.Min(len[x, y], len[x, z] + len[z, y]);
        }
        var bitmax = 1 << n;
        var dp = Enumerable.Repeat(inf, bitmax).ToArray();
        dp[0] = 0;
        for (var b = 0; b < bitmax; ++b)
        {
            if (b == 0)
            {
                for (var i = 0; i < n; ++i) dp[1 << i] = a[i];
            }
            else if (Popcount(b) >= k)
            {
                continue;
            }
            else
            {
                for (var i = 0; i < n; ++i)
                {
                    if ((b & (1 << i)) != 0) continue;
                    var near = inf;
                    for (var j = 0; j < n; ++j) if ((b & (1 << j)) != 0) near = Math.Min(near, len[i, j]);
                    dp[b | (1 << i)] = Math.Min(dp[b | (1 << i)], dp[b] + a[i] + near);
                }
            }
        }
        var ans = inf;
        for (var i = 0; i < bitmax; ++i) if (Popcount(i) == k) ans = Math.Min(ans, dp[i]);
        WriteLine(ans);
    }
    static int Popcount(long n)
    {
        var c = (n & 0x5555555555555555) + ((n>>1) & 0x5555555555555555);
        c = (c & 0x3333333333333333) + ((c>>2) & 0x3333333333333333);
        c = (c & 0x0f0f0f0f0f0f0f0f) + ((c>>4) & 0x0f0f0f0f0f0f0f0f);
        c = (c & 0x00ff00ff00ff00ff) + ((c>>8) & 0x00ff00ff00ff00ff);
        c = (c & 0x0000ffff0000ffff) + ((c>>16) & 0x0000ffff0000ffff);
        c = (c & 0x00000000ffffffff) + ((c>>32) & 0x00000000ffffffff);
        return (int)c;
    }
}
0