結果

問題 No.190 Dry Wet Moist
ユーザー roarisroaris
提出日時 2019-11-03 13:22:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 631 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,924 KB
最終ジャッジ日時 2024-09-14 23:31:40
合計ジャッジ時間 4,764 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,144 KB
testcase_01 AC 44 ms
53,504 KB
testcase_02 AC 47 ms
53,376 KB
testcase_03 AC 44 ms
53,632 KB
testcase_04 AC 44 ms
54,016 KB
testcase_05 AC 44 ms
54,016 KB
testcase_06 AC 46 ms
53,888 KB
testcase_07 AC 64 ms
67,456 KB
testcase_08 AC 58 ms
63,872 KB
testcase_09 AC 55 ms
62,940 KB
testcase_10 AC 54 ms
61,696 KB
testcase_11 AC 55 ms
61,824 KB
testcase_12 AC 148 ms
91,776 KB
testcase_13 AC 166 ms
97,024 KB
testcase_14 AC 143 ms
91,648 KB
testcase_15 AC 171 ms
99,776 KB
testcase_16 AC 203 ms
106,928 KB
testcase_17 AC 89 ms
77,696 KB
testcase_18 AC 130 ms
88,144 KB
testcase_19 AC 201 ms
106,804 KB
testcase_20 AC 159 ms
94,660 KB
testcase_21 AC 85 ms
77,312 KB
testcase_22 AC 175 ms
107,544 KB
testcase_23 AC 238 ms
109,924 KB
testcase_24 AC 171 ms
107,824 KB
testcase_25 AC 44 ms
53,632 KB
testcase_26 AC 45 ms
53,760 KB
testcase_27 AC 179 ms
95,360 KB
testcase_28 AC 119 ms
84,324 KB
testcase_29 AC 132 ms
86,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
from collections import Counter

N = int(input())
A = list(map(int, input().split()))
A.sort()
wet = 0
prev_idx = 2*N

for i in range(2*N):
    idx = bisect_left(A, -A[i])-1
    idx = min(idx, prev_idx-1)
    
    if i < idx:
        wet += 1
        prev_idx = idx
    else:
        break

dry = 0
prev_idx = -1

for i in range(2*N-1, -1, -1):
    idx = bisect_right(A, -A[i])
    idx = max(idx, prev_idx+1)
    
    if idx < i:
        dry += 1
        prev_idx = idx
    else:
        break

moist = 0
d = Counter(A)

for k, v in d.items():
    moist += min(d[k], d[-k])

moist //= 2

print(wet, dry, moist)
0