結果

問題 No.459 C-VS for yukicoder
ユーザー compass19compass19
提出日時 2016-12-10 01:18:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,446 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 26,240 KB
最終ジャッジ日時 2024-05-06 14:02:28
合計ジャッジ時間 7,701 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 27 ms
10,880 KB
testcase_12 AC 28 ms
10,880 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 34 ms
11,136 KB
testcase_16 AC 32 ms
11,008 KB
testcase_17 AC 30 ms
10,880 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 305 ms
26,240 KB
testcase_22 AC 274 ms
24,228 KB
testcase_23 AC 275 ms
23,848 KB
testcase_24 AC 126 ms
16,124 KB
testcase_25 AC 95 ms
13,312 KB
testcase_26 AC 97 ms
12,416 KB
testcase_27 AC 71 ms
12,288 KB
testcase_28 AC 73 ms
13,312 KB
testcase_29 AC 140 ms
15,100 KB
testcase_30 AC 85 ms
12,416 KB
testcase_31 AC 83 ms
13,312 KB
testcase_32 AC 39 ms
11,264 KB
testcase_33 WA -
testcase_34 AC 105 ms
14,464 KB
testcase_35 AC 43 ms
11,136 KB
testcase_36 AC 98 ms
14,080 KB
testcase_37 AC 42 ms
11,136 KB
testcase_38 WA -
testcase_39 AC 39 ms
11,136 KB
testcase_40 WA -
testcase_41 AC 36 ms
11,392 KB
testcase_42 AC 73 ms
12,800 KB
testcase_43 AC 100 ms
14,080 KB
testcase_44 WA -
testcase_45 AC 41 ms
11,520 KB
testcase_46 AC 41 ms
11,136 KB
testcase_47 AC 35 ms
11,136 KB
testcase_48 AC 101 ms
14,080 KB
testcase_49 AC 39 ms
11,136 KB
testcase_50 WA -
testcase_51 AC 39 ms
11,392 KB
testcase_52 WA -
testcase_53 AC 42 ms
11,392 KB
testcase_54 WA -
testcase_55 AC 52 ms
11,776 KB
testcase_56 AC 75 ms
13,056 KB
testcase_57 AC 38 ms
11,392 KB
testcase_58 AC 103 ms
14,464 KB
testcase_59 WA -
testcase_60 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# データ入力
h, w, n = map(int, input().split())
s = [0 for _ in range(w)]
for i in range(h):
	for k, elm in enumerate(list(input())): 
		if elm == '#': 
			s[k] += 1

c_tmp = [int(input()) for _ in range(n)]


# パック情報
# pack_dic[pack]: dict.
pack_dic = { pack: {'left': c_tmp[pack], 'elm': [0, 0, 0], 'sum': 0} for pack in range(n)}


# 列の情報の入力
# column_list[column] = list(columnに影響するpack_number)
column_list = [list() for _ in range(w)]
for pack, left in enumerate(c_tmp):
	column_list[left].append(pack)
	column_list[left+1].append(pack)
	column_list[left+2].append(pack)


# main(詰め込み)
for column in range(w):
	sorted_temp_list = sorted(column_list[column], \
							  key=lambda x: pack_dic[x]['sum'])

	# 列columnについて、そのcolumnに影響するpackを
	# 現時点でのpackの要素の合計が少ない順に#を詰める(要素が全くないpackをなくすため)
	stock = s[column]
	while stock != 0:
		for pack in sorted_temp_list:
			left = pack_dic[pack]['left']
			pack_dic[pack]['elm'][column-left] += 1
			pack_dic[pack]['sum'] += 1
			stock -= 1
			if stock == 0:
				break

def pack_print(_list):
	left, center, right = _list
	for _ in range(3):
		s = str()
		s += '#' if left > 0 else '.'
		s += '#' if center > 0 else '.'
		s += '#' if right > 0 else '.'
		print(s)
		left -= 1
		center -= 1
		right -= 1


for pack in range(n):
	pack_print(pack_dic[pack]['elm'])
0