結果

問題 No.190 Dry Wet Moist
ユーザー nebukuro09nebukuro09
提出日時 2016-09-29 11:57:13
言語 Python2
(2.7.18)
結果
AC  
実行時間 437 ms / 2,000 ms
コード長 1,138 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 34,068 KB
最終ジャッジ日時 2024-11-21 10:26:06
合計ジャッジ時間 4,712 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,816 KB
testcase_01 AC 12 ms
6,820 KB
testcase_02 AC 12 ms
6,816 KB
testcase_03 AC 13 ms
6,816 KB
testcase_04 AC 12 ms
6,820 KB
testcase_05 AC 12 ms
6,816 KB
testcase_06 AC 13 ms
6,816 KB
testcase_07 AC 15 ms
6,912 KB
testcase_08 AC 14 ms
6,912 KB
testcase_09 AC 13 ms
6,912 KB
testcase_10 AC 13 ms
6,820 KB
testcase_11 AC 13 ms
6,820 KB
testcase_12 AC 198 ms
18,592 KB
testcase_13 AC 245 ms
19,796 KB
testcase_14 AC 192 ms
18,240 KB
testcase_15 AC 261 ms
20,208 KB
testcase_16 AC 331 ms
22,092 KB
testcase_17 AC 52 ms
9,728 KB
testcase_18 AC 163 ms
17,732 KB
testcase_19 AC 325 ms
21,920 KB
testcase_20 AC 228 ms
19,384 KB
testcase_21 AC 37 ms
7,932 KB
testcase_22 AC 218 ms
24,184 KB
testcase_23 AC 437 ms
34,068 KB
testcase_24 AC 213 ms
24,184 KB
testcase_25 AC 12 ms
6,816 KB
testcase_26 AC 13 ms
6,820 KB
testcase_27 AC 275 ms
20,920 KB
testcase_28 AC 133 ms
17,196 KB
testcase_29 AC 164 ms
17,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N = input()
A = sorted(map(int, raw_input().split()))
nega = []
zero = []
posi = []
for a in A:
    if a < 0:
        nega.append(a)
    elif a == 0:
        zero.append(a)
    else:
        posi.append(a)

if len(nega) == 0:
    print 0, min(len(posi),len(zero))+max(0, len(posi)-len(zero))/2, len(zero)/2
    exit()
if len(posi) == 0:
    print min(len(nega),len(zero))+max(0, len(nega)-len(zero))/2, 0, len(zero)/2
    exit()

nega_n = 0
p1 = 0
p2 = len(posi)-1
while p1 < len(nega) and p2 >= 0:
    if nega[p1]+posi[p2] < 0:
        p1 += 1
        p2 -= 1
        nega_n += 1
    else:
        p2 -= 1
nega_n += min(len(zero), len(nega)-nega_n) + max(0,(len(nega)-nega_n-len(zero))/2)

posi_n = 0
p1 = 0
p2 = len(posi)-1
while p1 < len(nega) and p2 >= 0:
    if nega[p1]+posi[p2] > 0:
        p1 += 1
        p2 -= 1
        posi_n += 1
    else:
        p1 += 1
posi_n += min(len(zero), len(posi)-posi_n) + max(0,(len(posi)-posi_n-len(zero))/2)

nega = map(abs, nega)
c1 = Counter(nega)
c2 = Counter(posi)
moist = len(zero)/2
for k in c1:
    moist += min(c1[k], c2[k])

print nega_n, posi_n, moist
0