結果

問題 No.190 Dry Wet Moist
ユーザー TawaraTawara
提出日時 2015-12-20 12:40:50
言語 Python2
(2.7.18)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 512 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 32,472 KB
最終ジャッジ日時 2024-09-17 11:59:46
合計ジャッジ時間 5,337 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,784 KB
testcase_01 AC 11 ms
6,784 KB
testcase_02 AC 10 ms
6,656 KB
testcase_03 AC 11 ms
6,784 KB
testcase_04 AC 11 ms
6,784 KB
testcase_05 AC 11 ms
6,784 KB
testcase_06 AC 11 ms
6,656 KB
testcase_07 AC 12 ms
6,912 KB
testcase_08 AC 12 ms
6,784 KB
testcase_09 AC 11 ms
6,528 KB
testcase_10 AC 11 ms
6,528 KB
testcase_11 AC 11 ms
6,656 KB
testcase_12 AC 143 ms
17,484 KB
testcase_13 AC 174 ms
18,712 KB
testcase_14 AC 152 ms
17,176 KB
testcase_15 AC 200 ms
18,804 KB
testcase_16 AC 246 ms
20,352 KB
testcase_17 AC 38 ms
9,344 KB
testcase_18 AC 119 ms
16,892 KB
testcase_19 AC 237 ms
20,580 KB
testcase_20 AC 163 ms
18,180 KB
testcase_21 AC 29 ms
7,928 KB
testcase_22 AC 313 ms
24,180 KB
testcase_23 AC 336 ms
32,472 KB
testcase_24 AC 302 ms
24,052 KB
testcase_25 AC 10 ms
6,784 KB
testcase_26 AC 10 ms
6,784 KB
testcase_27 AC 203 ms
20,432 KB
testcase_28 AC 97 ms
16,912 KB
testcase_29 AC 121 ms
17,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N = input()
D=[];W=[];M=Nd=Nw=0
def solve(A,B,Na,Nb):
	cnt = inc = 0
	for a in A:
		while inc < Nb and a <= B[inc]: inc+=1
		if inc >= Nb:continue
		cnt+=1;inc+=1
	Na -= cnt
	return cnt + min(Na,M) + max(0,Na-M)/2
for a in map(int,raw_input().split()):
	if a < 0: D+=[-a];Nd+=1
	elif a > 0: W+=[a];Nw+=1
	else: M += 1
D.sort(reverse=True)
W.sort(reverse=True)
Cd = Counter(D)
Cw = Counter(W)
print solve(D,W,Nd,Nw),solve(W,D,Nw,Nd),M/2+sum(min(v,Cw[k]) for k,v in Cd.iteritems())
0