結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | nanophoto12 |
提出日時 | 2014-11-07 00:47:46 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,109 bytes |
コンパイル時間 | 1,100 ms |
コンパイル使用メモリ | 116,304 KB |
実行使用メモリ | 51,340 KB |
最終ジャッジ日時 | 2024-06-10 00:54:33 |
合計ジャッジ時間 | 7,621 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
25,464 KB |
testcase_01 | WA | - |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
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 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; internal class Program { internal class PriorityComparer : IComparer<Tuple<int, int>> { public int Compare(Tuple<int, int> x, Tuple<int, int> y) { int firstCompared = x.Item1.CompareTo(y.Item1); if (firstCompared == 0) { return x.Item2.CompareTo(y.Item2); } return firstCompared; } } private static readonly PriorityComparer _comparer = new PriorityComparer(); static void PushHeap(List<Tuple<int,int>> array, Tuple<int,int> elem) { int n = array.Count; int left = 0; int right = n - 1; if (right - left <= 1) { for (int i = left; i <= right; i++) { if (_comparer.Compare(elem, array[i]) == 0) { array.Insert(i, elem); return; } if (_comparer.Compare(elem, array[i]) < 0) { array.Insert(i, elem); return; } } array.Add(elem); } while (right - left > 1) { int middle = (right + left)/ 2; int compare = _comparer.Compare(elem, array[middle]); if (compare == 0) { array.Insert(middle, elem); return; } if (compare > 0) { right = middle; } else { left = middle; } } array.Insert(left, elem); } static Tuple<int,int> PopHeap(List<Tuple<int,int>> array) { var target = array[0]; array.RemoveAt(0); return target; } public static void Main(string[] args) { var n = int.Parse(Console.ReadLine()); var own = Console.ReadLine().Split(' ').Select(element=>new Tuple<int,int>(int.Parse(element), 0)).ToArray(); var opposites = Console.ReadLine().Split(' ').Select(int.Parse).ToArray(); var list = new List<Tuple<int, int>>(); list.Add(own[0]); for (int i = 1; i < n;i++ ) { PushHeap(list, own[i]); } var battleCounts = new int[n]; for (int i = 0; i < n; i++) { var maxBattleCount = 0; var source = new List<Tuple<int,int>>(list); for (int k = i; k < i + n; k++) { var first = PopHeap(source); var opposite = opposites[k%n]; int battleCount = first.Item2 + 1; PushHeap(source, new Tuple<int,int>(first.Item1 + opposite/2, battleCount)); maxBattleCount = Math.Max(maxBattleCount, battleCount); } battleCounts[i] = maxBattleCount; } Console.WriteLine(battleCounts.Min()); } }