結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | te-sh |
提出日時 | 2016-09-01 00:36:57 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 596 ms / 5,000 ms |
コード長 | 1,002 bytes |
コンパイル時間 | 960 ms |
コンパイル使用メモリ | 126,168 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-12 04:04:58 |
合計ジャッジ時間 | 7,104 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 596 ms
6,940 KB |
testcase_03 | AC | 466 ms
6,940 KB |
testcase_04 | AC | 247 ms
6,940 KB |
testcase_05 | AC | 164 ms
6,940 KB |
testcase_06 | AC | 59 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 75 ms
6,940 KB |
testcase_09 | AC | 572 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 360 ms
6,944 KB |
testcase_12 | AC | 292 ms
6,940 KB |
testcase_13 | AC | 233 ms
6,944 KB |
testcase_14 | AC | 578 ms
6,944 KB |
testcase_15 | AC | 527 ms
6,944 KB |
testcase_16 | AC | 11 ms
6,940 KB |
testcase_17 | AC | 339 ms
6,944 KB |
testcase_18 | AC | 286 ms
6,940 KB |
testcase_19 | AC | 7 ms
6,944 KB |
ソースコード
import std.algorithm, std.array, std.container, std.range, std.bitmanip; import std.numeric, std.math, std.bigint, std.random; import std.string, std.conv, std.stdio, std.typecons; struct monster { long level; long count; int opCmp(monster rhs) { int sign(long n) { return n == 0 ? 0 : (n > 0 ? 1 : -1); } auto s1 = sign(level - rhs.level); auto s2 = sign(count - rhs.count); return s1 == 0 ? s2 : s1; } } void main() { auto n = readln.chomp.to!int; auto ai = readln.split.map!(to!long).array; auto bi = readln.split.map!(to!long).array; auto m = long.max; foreach (ci; iota(n).map!(i => bi[i..$] ~ bi[0..i])) m = min(m, calcCount(ai, ci)); writeln(m); } long calcCount(long[] ai, long[] bi) { auto mi = ai.map!(a => monster(a, 0)).array; auto hi = mi.heapify!("a > b"); auto r = 0L; foreach (b; bi) { auto h = hi.front; hi.replaceFront(monster(h.level + b / 2, h.count + 1)); r = max(r, h.count + 1); } return r; }