結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | mban |
提出日時 | 2017-01-24 16:37:12 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 4,548 ms / 5,000 ms |
コード長 | 3,622 bytes |
コンパイル時間 | 1,042 ms |
コンパイル使用メモリ | 118,520 KB |
実行使用メモリ | 55,116 KB |
最終ジャッジ日時 | 2024-06-23 23:55:46 |
合計ジャッジ時間 | 37,176 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
27,424 KB |
testcase_01 | AC | 34 ms
25,132 KB |
testcase_02 | AC | 4,115 ms
48,460 KB |
testcase_03 | AC | 2,976 ms
48,068 KB |
testcase_04 | AC | 1,332 ms
32,164 KB |
testcase_05 | AC | 814 ms
32,124 KB |
testcase_06 | AC | 248 ms
27,620 KB |
testcase_07 | AC | 37 ms
23,228 KB |
testcase_08 | AC | 340 ms
29,688 KB |
testcase_09 | AC | 3,976 ms
44,504 KB |
testcase_10 | AC | 33 ms
25,128 KB |
testcase_11 | AC | 2,636 ms
46,544 KB |
testcase_12 | AC | 4,548 ms
44,352 KB |
testcase_13 | AC | 3,049 ms
46,408 KB |
testcase_14 | AC | 3,952 ms
46,548 KB |
testcase_15 | AC | 3,519 ms
45,112 KB |
testcase_16 | AC | 62 ms
25,772 KB |
testcase_17 | AC | 1,971 ms
49,120 KB |
testcase_18 | AC | 1,596 ms
55,116 KB |
testcase_19 | AC | 53 ms
25,900 KB |
コンパイルメッセージ
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; using System.Collections.Generic; using System.Collections.Specialized; using System.Text; using System.Text.RegularExpressions; using System.Linq; using System.IO; class Program { static void Main(string[]args) { Magatro m = new Magatro(); m.Scan(); m.Solve(); } } public class Magatro { private PriortyQueue<Monstar> Q; private int N; private int[] B; public void Scan() { N = int.Parse(Console.ReadLine()); Monstar[] a = Console.ReadLine().Split(' ').Select(s=>new Monstar(int.Parse(s))).ToArray(); Array.Sort(a,Compare); Q = new PriortyQueue<Monstar>(Compare, a.ToList()); B = Console.ReadLine().Split(' ').Select(int.Parse).ToArray(); } public void Solve() { int ans = int.MaxValue; for(int i = 0; i < N; i++) { ans = Math.Min(ans, Cnt(i)); } Console.WriteLine(ans); } private int Cnt(int first) { if (first < 0 || N <= first) { throw new IndexOutOfRangeException(); } PriortyQueue<Monstar> cp = Q.Clone(); for(int i = 0; i < N; i++) { Monstar mon = cp.Pop(); mon.Battle++; mon.Level += B[(first + i) % N] / 2; cp.Push(mon); } int max = -1; Monstar[] arr = cp.ToArray(); for(int i = 0; i < N; i++) { max = Math.Max(max, arr[i].Battle); } return max; } private int Compare(Monstar a, Monstar b) { if (a.Level != b.Level) { return a.Level.CompareTo(b.Level); } else { return a.Battle.CompareTo(b.Battle); } } } public struct Monstar { public int Battle; public int Level; public Monstar(int lebel) { Level = lebel; Battle = 0; } } public class PriortyQueue<T> { private Comparison<T> Compare; private List<T> L; public PriortyQueue(Comparison<T>compare) { Compare = compare; L = new List<T>(); } public PriortyQueue(Comparison<T> compare, List<T>list) :this(compare) { L = list.ToList(); } public void Push(T item) { if (L.Count == 0) { L.Add(item); return; } if (Compare(L[0], item) > 0) { L.Insert(0, item); return; } if (Compare(item, L.Last()) > 0) { L.Add(item); return; } int left = 0; int right = L.Count - 1; while (left != right) { int index = (left + right) / 2; switch (Compare(L[index], item)) { case 1: right = index; break; case -1: left = index+1; break; case 0: L.Insert(index, item); return; default: throw new Exception(); } } L.Insert(right, item); } public T Peak() { if (L.Count < 1) { throw new IndexOutOfRangeException(); } return L[0]; } public T Pop() { T ret = Peak(); L.RemoveAt(0); return ret; } public T[] ToArray() { return L.ToArray(); } public PriortyQueue<T> Clone() { return new PriortyQueue<T>(Compare, L); } }