結果
問題 | No.2806 Cornflake Man |
ユーザー | tobisatis |
提出日時 | 2024-07-12 21:32:41 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 777 ms / 2,000 ms |
コード長 | 2,475 bytes |
コンパイル時間 | 8,268 ms |
コンパイル使用メモリ | 171,872 KB |
実行使用メモリ | 189,152 KB |
最終ジャッジ日時 | 2024-07-17 20:26:01 |
合計ジャッジ時間 | 14,325 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 97 ms
52,348 KB |
testcase_01 | AC | 604 ms
70,152 KB |
testcase_02 | AC | 78 ms
35,840 KB |
testcase_03 | AC | 663 ms
69,828 KB |
testcase_04 | AC | 79 ms
35,168 KB |
testcase_05 | AC | 189 ms
40,704 KB |
testcase_06 | AC | 87 ms
42,496 KB |
testcase_07 | AC | 777 ms
73,880 KB |
testcase_08 | AC | 87 ms
41,856 KB |
testcase_09 | AC | 434 ms
52,992 KB |
testcase_10 | AC | 181 ms
46,592 KB |
testcase_11 | AC | 70 ms
31,456 KB |
testcase_12 | AC | 219 ms
49,408 KB |
testcase_13 | AC | 386 ms
63,692 KB |
testcase_14 | AC | 124 ms
38,912 KB |
testcase_15 | AC | 411 ms
89,424 KB |
testcase_16 | AC | 57 ms
29,536 KB |
testcase_17 | AC | 56 ms
29,824 KB |
testcase_18 | AC | 56 ms
29,540 KB |
testcase_19 | AC | 56 ms
189,152 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (100 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) /home/judge/data/code/Main.cs(21,13): warning CS0219: 変数 'max' は割り当てられていますが、その値は使用されていません [/home/judge/data/code/main.csproj] main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
namespace AtCoder; #nullable enable using System.Numerics; static class Extensions { public static T[] Repeat<T>(this int time, Func<T> F) => Enumerable.Range(0, time).Select(_ => F()).ToArray(); } class AtCoder { object? Solve() { var n = Int(); var m = Int(); var b = new List<int>(); var o = new HashSet<int>(); var q = new PriorityQueue<(int, int), (int, int)>(); var max = int.MaxValue; var c = new HashSet<int>(); Int(); for (var i = 1; i < n; i++) { var a = Int(); q.Enqueue((a, 0), (a, 0)); } while (q.Count > 0) { var (v, k) = q.Dequeue(); if (k == 0) { o.Add(v); if (c.Contains(v)) continue; b.Add(v); c.Add(v); var v2 = v * 2; if (v2 > m) continue; c.Add(v2); q.Enqueue((v2, v), (v2, v)); } else { if (!o.Contains(v)) return -1; var v2 = v + k; if (v2 > m) continue; c.Add(v2); q.Enqueue((v2, k), (v2, k)); } } Out(b.Count); Out(b, " "); return null; } public static void Main() => new AtCoder().Run(); public void Run() { var res = Solve(); if (res != null) { if (res is bool yes) res = yes ? "Yes" : "No"; sw.WriteLine(res); } sw.Flush(); } string[] input = Array.Empty<string>(); int iter = 0; readonly StreamWriter sw = new(Console.OpenStandardOutput()) { AutoFlush = false }; string String() { while (iter >= input.Length) (input, iter) = (Console.ReadLine()!.Split(' '), 0); return input[iter++]; } T Input<T>() where T : IParsable<T> => T.Parse(String(), null); int Int() => Input<int>(); void Out(object? x, string? separator = null) { separator ??= Environment.NewLine; if (x is System.Collections.IEnumerable obj and not string) { var firstLine = true; foreach (var item in obj) { if (!firstLine) sw.Write(separator); firstLine = false; sw.Write(item); } } else sw.Write(x); sw.WriteLine(); } }