結果
問題 | No.459 C-VS for yukicoder |
ユーザー | te-sh |
提出日時 | 2017-12-06 17:40:01 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,228 bytes |
コンパイル時間 | 852 ms |
コンパイル使用メモリ | 113,508 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-12 22:50:45 |
合計ジャッジ時間 | 7,954 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 10 ms
6,948 KB |
testcase_27 | WA | - |
testcase_28 | AC | 9 ms
6,940 KB |
testcase_29 | AC | 24 ms
6,940 KB |
testcase_30 | AC | 9 ms
6,940 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
ソースコード
import std.algorithm, std.conv, std.range, std.stdio, std.string; void main() { auto rd = readln.split.to!(int[]), h = rd[0], w = rd[1], n = rd[2]; auto b = new int[](w); foreach (i; 0..h) { auto s = readln.chomp; foreach (j; 0..w) if (s[j] == '#' && !b[j]) b[j] = h-i; } struct Pack { int i, c; int[] b; } auto packs = new Pack[](n); foreach (i; 0..n) { auto c = readln.chomp.to!int; packs[i] = Pack(i, c, new int[](3)); } packs.sort!"a.c < b.c"; auto bi = 0, bj = 0; foreach (i; 0..w) { while (bi < n && packs[bi].c < i - 2) ++bi; while (bj < n && packs[bi].c <= i) ++bj; if (b[i] < bj-bi) { auto r = b[i]; foreach (bk; bi..bj) { if (r == 0) break; if (packs[bk].b[i-packs[bk].c] == 0) { ++packs[bk].b[i-packs[bk].c]; --r; } } foreach (bk; bi..bi+r) ++packs[bk].b[i-packs[bk].c]; } else { foreach (bk; bi..bj) packs[bk].b[i-packs[bk].c] = b[i]/(bj-bi) + (bk-bi < b[i]%(bj-bi)); } } packs.sort!"a.i < b.i"; foreach (pack; packs) foreach (i; 0..3) { foreach (j; 0..3) write(pack.b[j] > i ? "#" : "."); writeln; } }