結果

問題 No.4 おもりと天秤
ユーザー masaktmasakt
提出日時 2017-04-16 01:49:12
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,297 bytes
コンパイル時間 2,120 ms
コンパイル使用メモリ 104,100 KB
実行使用メモリ 44,120 KB
最終ジャッジ日時 2023-09-26 02:03:57
合計ジャッジ時間 9,062 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 56 ms
21,556 KB
testcase_02 AC 59 ms
23,564 KB
testcase_03 AC 60 ms
23,476 KB
testcase_04 AC 60 ms
23,484 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Generic;
using System.Linq;

class P
{
    static int[] w;
    static bool[] dp;
    static bool dfs(int i, int sum, int goal)
    {
        if (dp[i])
        {
            return dp[i];
        }
        bool ret = false;
        if (goal == sum)
        {
            ret = true;
        }
        else if (i == 0)
        {
            ret = false;
        }
        else
        {
            ret = dfs(i - 1, sum, goal) || dfs(i - 1, sum + w[i], goal);
        }
        return dp[i] = ret;
    }
    static void Main(string[] _)
    {
        int n = int.Parse(Console.ReadLine());
        w = new int[n];
        dp = new bool[n];
        _ = Console.ReadLine().Split(' ');
        int sum = 0;
        string ans = "";
        for (int i = 0; i < n; i++)
        {
            w[i] = int.Parse(_[i]);
            sum += w[i];
        }

        if (sum % 2 == 0)
        {
            sum /= 2;
            Array.Sort(w);
            if (sum > w.Last())
            {
                ans = dfs(n - 1, 0, sum) ? "possible" : "impossible";
            }
            else
            {
                ans = "impossible";
            }
        }
        else
        {
            ans = "impossible";
        }

        Console.WriteLine(ans);
    }
}
0