結果

問題 No.190 Dry Wet Moist
ユーザー titiatitia
提出日時 2022-06-01 01:50:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 469 ms / 2,000 ms
コード長 808 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 38,420 KB
最終ジャッジ日時 2024-09-21 01:26:35
合計ジャッジ時間 5,491 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 203 ms
20,612 KB
testcase_13 AC 257 ms
22,224 KB
testcase_14 AC 209 ms
20,980 KB
testcase_15 AC 283 ms
23,280 KB
testcase_16 AC 353 ms
27,848 KB
testcase_17 AC 64 ms
13,280 KB
testcase_18 AC 174 ms
19,528 KB
testcase_19 AC 354 ms
27,812 KB
testcase_20 AC 243 ms
22,280 KB
testcase_21 AC 54 ms
12,160 KB
testcase_22 AC 367 ms
30,528 KB
testcase_23 AC 469 ms
38,420 KB
testcase_24 AC 304 ms
32,820 KB
testcase_25 AC 27 ms
10,752 KB
testcase_26 AC 25 ms
10,752 KB
testcase_27 AC 276 ms
26,612 KB
testcase_28 AC 139 ms
18,800 KB
testcase_29 AC 171 ms
19,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N=int(input())
A=list(map(int,input().split()))

MINUS=[]
ZERO=0
PLUS=[]

for a in A:
    if a<0:
        MINUS.append(-a)
    elif a==0:
        ZERO+=1
    else:
        PLUS.append(a)

CM=Counter(MINUS)
CP=Counter(PLUS)

mans=0

for cp in CP:
    mans+=min(CP[cp],CM[cp])

mans+=ZERO//2

wans=0

M2=MINUS+[0]*ZERO
P2=PLUS[:]

M2.sort()
P2.sort()

ind=0
for i in range(len(M2)):
    while ind<len(P2) and P2[ind]<=M2[i]:
        ind+=1
    if ind<len(P2):
        wans+=1
        ind+=1

wans+=(len(P2)-wans)//2

#print(wans)

dans=0

M2=MINUS[:]
P2=PLUS+[0]*ZERO

M2.sort()
P2.sort()

ind=0
for i in range(len(P2)):
    while ind<len(M2) and M2[ind]<=P2[i]:
        ind+=1
    if ind<len(M2):
        dans+=1
        ind+=1

dans+=(len(M2)-dans)//2

print(dans,wans,mans)
0