結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | mban |
提出日時 | 2017-01-24 16:13:26 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,999 bytes |
コンパイル時間 | 1,135 ms |
コンパイル使用メモリ | 110,976 KB |
実行使用メモリ | 36,224 KB |
最終ジャッジ日時 | 2024-06-02 11:03:36 |
合計ジャッジ時間 | 28,560 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
18,816 KB |
testcase_01 | AC | 24 ms
18,688 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 24 ms
18,560 KB |
testcase_11 | AC | 1,717 ms
35,840 KB |
testcase_12 | AC | 3,883 ms
35,584 KB |
testcase_13 | AC | 2,591 ms
35,968 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 1,483 ms
32,384 KB |
testcase_18 | AC | 1,188 ms
31,104 KB |
testcase_19 | WA | - |
コンパイルメッセージ
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 Scanner { private StreamReader Sr; private string[] S; private int Index; private const char Separator=' '; public Scanner() { Index = 0; S = new string[0]; Sr = new StreamReader(Console.OpenStandardInput()); } private string[] Line() { return Sr.ReadLine().Split(Separator); } public string Next() { string result; if (Index >= S.Length) { S = Line(); Index = 0; } result = S[Index]; Index++; return result; } public int NextInt() { return int.Parse(Next()); } public double NextDouble() { return double.Parse(Next()); } public long NextLong() { return long.Parse(Next()); } public string[] StringArray(int index = 0) { Next(); Index = S.Length; return S.Skip(index).ToArray(); } public int[] IntArray(int index = 0) { return StringArray(index).Select(int.Parse).ToArray(); } public long[]LongArray(int index = 0) { return StringArray(index).Select(long.Parse).ToArray(); } public bool ScanToEnd(ref string s) { if (Sr.EndOfStream) { return false; } else { s = Sr.ReadLine(); return true; } } } public class Magatro { private PriortyQueue<Monstar> Q; private int N; private int[] B; public void Scan() { Scanner sc = new Scanner(); N = sc.NextInt(); B = new int[N]; Init(); for(int i = 0; i < N; i++) { Q.Push(new Monstar(sc.NextInt())); } for(int i = 0; i < N; i++) { B[i] = sc.NextInt(); } } private void Init() { Q = new PriortyQueue<Monstar>(Compare); } 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 = (PriortyQueue<Monstar>)Q.Clone(); for(int i = 0; i < N; i++) { Monstar mon = cp.Pop(); mon.Battle++; mon.Level += B[(first + i) % N] / 2; Q.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>:ICloneable { private Comparison<T> Compare; private List<T> L; public PriortyQueue(Comparison<T>compare) { Compare = compare; L = new List<T>(); } 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 object Clone() { return MemberwiseClone(); } }