結果

問題 No.318 学学学学学
ユーザー TawaraTawara
提出日時 2015-12-18 17:25:20
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 388 ms / 2,000 ms
コード長 720 bytes
コンパイル時間 1,845 ms
コンパイル使用メモリ 76,564 KB
実行使用メモリ 147,888 KB
最終ジャッジ日時 2024-06-22 16:11:21
合計ジャッジ時間 8,653 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
79,908 KB
testcase_01 AC 104 ms
86,312 KB
testcase_02 AC 134 ms
89,512 KB
testcase_03 AC 99 ms
84,536 KB
testcase_04 AC 118 ms
87,720 KB
testcase_05 AC 388 ms
147,888 KB
testcase_06 AC 367 ms
119,984 KB
testcase_07 AC 339 ms
108,940 KB
testcase_08 AC 290 ms
101,668 KB
testcase_09 AC 256 ms
95,160 KB
testcase_10 AC 191 ms
92,588 KB
testcase_11 AC 355 ms
147,760 KB
testcase_12 AC 266 ms
120,112 KB
testcase_13 AC 235 ms
108,976 KB
testcase_14 AC 232 ms
102,068 KB
testcase_15 AC 193 ms
95,792 KB
testcase_16 AC 152 ms
94,248 KB
testcase_17 AC 155 ms
117,852 KB
testcase_18 AC 223 ms
117,668 KB
testcase_19 AC 240 ms
117,952 KB
testcase_20 AC 198 ms
89,888 KB
testcase_21 AC 68 ms
75,528 KB
testcase_22 AC 67 ms
75,804 KB
testcase_23 AC 62 ms
75,528 KB
testcase_24 AC 62 ms
75,560 KB
testcase_25 AC 64 ms
75,804 KB
testcase_26 AC 66 ms
75,804 KB
testcase_27 AC 65 ms
75,580 KB
testcase_28 AC 64 ms
75,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

bitN = 0; bit = []
def bit_add(a,w):
	while a <= bitN: bit[a] += w; a += a&(-a)
def bit_sum(a):
	ret = 0
	while a > 0: ret += bit[a]; a -= a&(-a)
	return ret
N = input()
a = map(int,raw_input().split())
b = [0]*N; c = {}; dc = {}; pos = {}
for i,v in enumerate(a):
	if v in pos: pos[v][1]=i
	else: pos[v]=[i,i]
tmp = 0 
for v in sorted(a):
	if v > tmp: bitN += 1; tmp = v; c[v] = bitN; dc[bitN] = v
bit = [0]*(bitN+1)
for i,v in enumerate(a):
	bp = bitN-c[v]+1
	if bit_sum(bp-1) == 0: b[i] = v
	else:
		l = 0; r = bp-1
		while r - l > 1:
			mid = (l+r) / 2
			if bit_sum(mid): r = mid
			else: l = mid
		b[i] = dc[bitN-r+1]
	if i == pos[v][0]: bit_add(bp, 1)
	if i == pos[v][1]: bit_add(bp,-1)
print " ".join(map(str,b))
0