結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー bluemeganebluemegane
提出日時 2021-01-23 07:53:48
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 1,461 bytes
コンパイル時間 1,463 ms
コンパイル使用メモリ 111,688 KB
実行使用メモリ 31,136 KB
最終ジャッジ日時 2024-06-09 12:27:52
合計ジャッジ時間 9,870 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
22,580 KB
testcase_01 AC 24 ms
26,960 KB
testcase_02 AC 24 ms
26,840 KB
testcase_03 AC 23 ms
26,976 KB
testcase_04 AC 24 ms
24,808 KB
testcase_05 AC 24 ms
25,064 KB
testcase_06 AC 23 ms
24,752 KB
testcase_07 AC 24 ms
24,944 KB
testcase_08 AC 23 ms
24,928 KB
testcase_09 AC 25 ms
26,832 KB
testcase_10 AC 25 ms
24,812 KB
testcase_11 AC 25 ms
24,756 KB
testcase_12 AC 24 ms
24,664 KB
testcase_13 AC 23 ms
24,916 KB
testcase_14 AC 23 ms
24,792 KB
testcase_15 AC 24 ms
26,984 KB
testcase_16 AC 25 ms
24,816 KB
testcase_17 AC 26 ms
24,748 KB
testcase_18 AC 25 ms
25,008 KB
testcase_19 AC 25 ms
24,936 KB
testcase_20 AC 24 ms
26,956 KB
testcase_21 AC 25 ms
27,236 KB
testcase_22 AC 25 ms
26,968 KB
testcase_23 AC 41 ms
31,136 KB
testcase_24 AC 61 ms
29,084 KB
testcase_25 AC 220 ms
29,092 KB
testcase_26 AC 25 ms
24,940 KB
testcase_27 AC 25 ms
22,708 KB
testcase_28 AC 221 ms
28,836 KB
testcase_29 AC 32 ms
28,760 KB
testcase_30 AC 41 ms
30,884 KB
testcase_31 AC 41 ms
28,704 KB
testcase_32 AC 26 ms
25,052 KB
testcase_33 AC 220 ms
29,088 KB
testcase_34 AC 226 ms
28,964 KB
testcase_35 AC 221 ms
28,708 KB
testcase_36 AC 222 ms
28,848 KB
testcase_37 AC 222 ms
31,128 KB
testcase_38 AC 221 ms
26,916 KB
testcase_39 AC 221 ms
31,016 KB
testcase_40 AC 219 ms
27,044 KB
testcase_41 AC 219 ms
31,004 KB
testcase_42 AC 218 ms
30,884 KB
testcase_43 AC 24 ms
24,556 KB
testcase_44 AC 226 ms
30,880 KB
testcase_45 AC 24 ms
24,872 KB
testcase_46 AC 195 ms
28,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System.Collections.Generic;
using System;

public class Hello
{
    public static int n;
    public static int[] a;
    public static int[,] b;
    static void Main()
    {
        n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        a = Array.ConvertAll(line, int.Parse);
        b = new int[n, n];
        for (int i = 0; i < n; i++)
        {
            line = Console.ReadLine().Trim().Split(' ');
            for (int j = 0; j < n; j++) b[i, j] = int.Parse(line[j]);
        }
        getAns();
    }
    static long calc(List<int> p)
    {
        var res = 0L;
        var pc = p.Count();
        for (int i = 0; i < pc - 1; i++)
            for (int j = i + 1; j < pc; j++) res += b[p[i] - 1, p[j] - 1];
        return res;
    }
    static void getAns()
    {
        var ans = long.MinValue;
        var ansp = new List<int>();
        var imax = 1 << n;
        for (int i = 1; i < imax; i++)
        {
            var temp = 0L;
            var p = new List<int>();
            for (int j = 0; j < 18; j++)
            {
                if (((i >> j) & 1) == 1)
                {
                    temp += a[j];
                    p.Add(j + 1);
                }
            }
            temp += calc(p);
            if (temp > ans) { ans = temp; ansp = p; }
        }
        Console.WriteLine(ans);
        Console.WriteLine(string.Join(" ", ansp));
    }
}
0