結果

問題 No.4 おもりと天秤
ユーザー TaK7907TaK7907
提出日時 2017-11-30 01:56:11
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,450 bytes
コンパイル時間 989 ms
コンパイル使用メモリ 113,012 KB
実行使用メモリ 826,852 KB
最終ジャッジ日時 2024-11-27 19:23:04
合計ジャッジ時間 46,607 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
18,816 KB
testcase_01 AC 28 ms
18,560 KB
testcase_02 AC 31 ms
19,044 KB
testcase_03 AC 30 ms
18,816 KB
testcase_04 AC 31 ms
18,560 KB
testcase_05 TLE -
testcase_06 AC 36 ms
25,292 KB
testcase_07 MLE -
testcase_08 AC 34 ms
24,796 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 38 ms
24,496 KB
testcase_12 AC 30 ms
26,700 KB
testcase_13 AC 31 ms
26,980 KB
testcase_14 AC 30 ms
24,416 KB
testcase_15 AC 31 ms
25,056 KB
testcase_16 AC 31 ms
26,600 KB
testcase_17 AC 30 ms
22,328 KB
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

namespace yuki0004 {
    public struct Node {
        public int s0, s1;
    }
    public class Program {
        static internal string Solve(System.IO.TextReader reader) {
            var n = int.Parse( reader.ReadLine() );
            var w = reader.ReadLine().Split().ToList().ConvertAll( int.Parse );
            var aim = w.Sum() / 2;
            if (w.Sum() % 2 == 1 || w.Max() > aim) return "impossible";
            if (w.Contains( aim )) return "possible";
            var q = new Queue<Node>();
            Node node = new Node { s0 = 0, s1 = w[ 0 ] };
            q.Enqueue( node );
            for (var i = 1; i <= n; ++i) {
                var r = new List<Node>();
                while (q.Any()) {
                    var t0 = q.Dequeue();
                    Node t1 = new Node { s0 = t0.s0 + w[ i ], s1 = t0.s1 };
                    Node t2 = new Node { s0 = t0.s0, s1 = t0.s1 + w[ i ] };
                    if (t1.s0 == aim) return "possible";
                    else if (t1.s0 < aim) r.Add( t1 );
                    if (t2.s1 == aim) return "possible";
                    else if (t2.s1 < aim) r.Add( t2 );
                }
                foreach (var e in r) q.Enqueue( e );
            }
            return "impossible";
        }

        static void Main(string[] args) {
            Console.WriteLine( Solve( System.Console.In ) );
        }
    }
}
0