結果

問題 No.1017 Reiwa Sequence
ユーザー EmKjpEmKjp
提出日時 2020-05-19 08:50:06
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 6,284 bytes
コンパイル時間 1,309 ms
コンパイル使用メモリ 69,408 KB
実行使用メモリ 286,316 KB
最終ジャッジ日時 2023-09-16 08:38:17
合計ジャッジ時間 12,469 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 182 ms
64,304 KB
testcase_01 AC 138 ms
56,184 KB
testcase_02 AC 93 ms
34,620 KB
testcase_03 AC 290 ms
87,084 KB
testcase_04 AC 93 ms
36,664 KB
testcase_05 AC 153 ms
54,964 KB
testcase_06 AC 143 ms
54,132 KB
testcase_07 AC 94 ms
36,724 KB
testcase_08 AC 90 ms
36,776 KB
testcase_09 AC 410 ms
109,980 KB
testcase_10 AC 965 ms
204,480 KB
testcase_11 AC 385 ms
105,068 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 425 ms
107,224 KB
testcase_15 AC 406 ms
113,976 KB
testcase_16 AC 376 ms
107,200 KB
testcase_17 AC 528 ms
140,308 KB
testcase_18 AC 383 ms
103,172 KB
testcase_19 AC 1,077 ms
206,692 KB
testcase_20 AC 1,046 ms
204,624 KB
testcase_21 AC 1,078 ms
206,620 KB
testcase_22 AC 1,045 ms
208,728 KB
testcase_23 AC 1,029 ms
208,544 KB
testcase_24 AC 1,034 ms
202,396 KB
testcase_25 AC 1,008 ms
204,656 KB
testcase_26 AC 957 ms
206,676 KB
testcase_27 AC 1,060 ms
206,600 KB
testcase_28 AC 1,044 ms
204,428 KB
testcase_29 AC 1,072 ms
208,652 KB
testcase_30 AC 1,039 ms
206,496 KB
testcase_31 AC 993 ms
204,504 KB
testcase_32 AC 970 ms
208,544 KB
testcase_33 AC 909 ms
206,464 KB
testcase_34 AC 893 ms
208,556 KB
testcase_35 AC 1,015 ms
204,640 KB
testcase_36 AC 942 ms
204,528 KB
testcase_37 AC 980 ms
204,592 KB
testcase_38 AC 1,027 ms
206,776 KB
testcase_39 AC 1,015 ms
208,792 KB
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 TLE -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 72 ms
31,800 KB
testcase_52 AC 942 ms
208,540 KB
testcase_53 AC 978 ms
206,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Text;
using System.Linq;

using E = System.Linq.Enumerable;
using System.Text.RegularExpressions;

internal partial class Solver {
    public void Run() {
        var n = ni();
        var a = ni(n).Take(22).ToArray();

        Action<int, int, int> dfs = null;
        var list = Enumerable.Range(0, a.Length * 150000 + 1).Select(_ => new List<int>()).ToArray();
        dfs = (pos, sum, used) => {
            if (pos == a.Length) {
                if (used > 0) {
                    list[sum].Add(used);
                }
            } else {
                dfs(pos + 1, sum + a[pos], used | 1 << pos);
                dfs(pos + 1, sum, used);
            }
        };
        dfs(0, 0, 0);
        for (int i = 0; i < list.Length; i++) {
            if (list[i].Count >= 2) {
                var b1 = list[i][0];
                var b2 = list[i][1];
                var common = b1 & b2;
                b1 ^= common;
                b2 ^= common;
                var ans = new List<int>();
                for (int j = 0; j < a.Length; j++) {
                    if ((b1 & (1 << j)) != 0) {
                        ans.Add(a[j]);
                    } else if ((b2 & (1 << j)) != 0) {
                        ans.Add(-a[j]);
                    } else {
                        ans.Add(0);
                    }
                }
                cout.WriteLine("Yes");
                cout.WriteLine(string.Join(" ", ans));
                return;
            }
        }
        cout.WriteLine("No");
    }
}

// PREWRITEN CODE BEGINS FROM HERE
internal partial class Solver : Scanner {
    public static void Main() {
#if LOCAL
        byte[] inputBuffer = new byte[1000000];
        var inputStream = Console.OpenStandardInput(inputBuffer.Length);
        using (var reader = new StreamReader(inputStream, Console.InputEncoding, false, inputBuffer.Length)) {
            Console.SetIn(reader);
            new Solver(Console.In, Console.Out).Run();
        }
#else
        Console.SetOut(new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false });
        new Solver(Console.In, Console.Out).Run();
        Console.Out.Flush();
#endif
    }

#pragma warning disable IDE0052
    private readonly TextReader cin;
    private readonly TextWriter cout;
#pragma warning restore IDE0052

    public Solver(TextReader reader, TextWriter writer)
        : base(reader) {
        cin = reader;
        cout = writer;
    }
    public Solver(string input, TextWriter writer)
        : this(new StringReader(input), writer) {
    }

#pragma warning disable IDE1006
#pragma warning disable IDE0051
    private int ni() { return NextInt(); }
    private int[] ni(int n) { return NextIntArray(n); }
    private long nl() { return NextLong(); }
    private long[] nl(int n) { return NextLongArray(n); }
    private double nd() { return NextDouble(); }
    private double[] nd(int n) { return NextDoubleArray(n); }
    private string ns() { return Next(); }
    private string[] ns(int n) { return NextArray(n); }
#pragma warning restore IDE1006
#pragma warning restore IDE0051
}

internal static class LinqPadExtension {
    [Conditional("DEBUG")]
    public static void Dump<T>(this T obj) {
#if DEBUG
        LINQPad.Extensions.Dump(obj);
#endif
    }
}

public class Scanner {
    private readonly TextReader Reader;
    private readonly CultureInfo ci = CultureInfo.InvariantCulture;

    private readonly char[] buffer = new char[2 * 1024];
    private int cursor = 0, length = 0;
    private string Token;
    private readonly StringBuilder sb = new StringBuilder(1024);

    public Scanner()
        : this(Console.In) {
    }

    public Scanner(TextReader reader) {
        Reader = reader;
    }

    public int NextInt() { return checked((int)NextLong()); }
    public long NextLong() {
        var s = Next();
        long r = 0;
        int i = 0;
        bool negative = false;
        if (s[i] == '-') {
            negative = true;
            i++;
        }
        for (; i < s.Length; i++) {
            r = r * 10 + (s[i] - '0');
#if DEBUG
            if (!char.IsDigit(s[i])) throw new FormatException();
#endif
        }
        return negative ? -r : r;
    }
    public double NextDouble() { return double.Parse(Next(), ci); }
    public string[] NextArray(int size) {
        string[] array = new string[size];
        for (int i = 0; i < size; i++) {
            array[i] = Next();
        }

        return array;
    }
    public int[] NextIntArray(int size) {
        int[] array = new int[size];
        for (int i = 0; i < size; i++) {
            array[i] = NextInt();
        }

        return array;
    }

    public long[] NextLongArray(int size) {
        long[] array = new long[size];
        for (int i = 0; i < size; i++) {
            array[i] = NextLong();
        }

        return array;
    }

    public double[] NextDoubleArray(int size) {
        double[] array = new double[size];
        for (int i = 0; i < size; i++) {
            array[i] = NextDouble();
        }

        return array;
    }

    public string Next() {
        if (Token == null) {
            if (!StockToken()) {
                throw new Exception();
            }
        }
        var token = Token;
        Token = null;
        return token;
    }

    public bool HasNext() {
        if (Token != null) {
            return true;
        }

        return StockToken();
    }

    private bool StockToken() {
        while (true) {
            sb.Clear();
            while (true) {
                if (cursor >= length) {
                    cursor = 0;
                    if ((length = Reader.Read(buffer, 0, buffer.Length)) <= 0) {
                        break;
                    }
                }
                var c = buffer[cursor++];
                if (33 <= c && c <= 126) {
                    sb.Append(c);
                } else {
                    if (sb.Length > 0) break;
                }
            }

            if (sb.Length > 0) {
                Token = sb.ToString();
                return true;
            }

            return false;
        }
    }
}
0