結果

問題 No.1888 Odd Insertion
ユーザー miscalcmiscalc
提出日時 2021-11-07 03:46:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 1,387 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 113,024 KB
最終ジャッジ日時 2024-06-29 06:00:41
合計ジャッジ時間 16,491 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 41 ms
52,480 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 42 ms
52,480 KB
testcase_06 AC 102 ms
109,440 KB
testcase_07 AC 103 ms
108,800 KB
testcase_08 AC 353 ms
112,640 KB
testcase_09 AC 335 ms
112,512 KB
testcase_10 AC 353 ms
112,512 KB
testcase_11 AC 343 ms
112,256 KB
testcase_12 AC 339 ms
112,640 KB
testcase_13 AC 345 ms
112,256 KB
testcase_14 AC 338 ms
112,256 KB
testcase_15 AC 337 ms
112,384 KB
testcase_16 AC 256 ms
112,384 KB
testcase_17 AC 338 ms
113,024 KB
testcase_18 AC 257 ms
112,896 KB
testcase_19 AC 250 ms
112,512 KB
testcase_20 AC 256 ms
112,128 KB
testcase_21 AC 253 ms
112,512 KB
testcase_22 AC 253 ms
112,768 KB
testcase_23 AC 259 ms
112,512 KB
testcase_24 AC 262 ms
112,768 KB
testcase_25 AC 262 ms
112,384 KB
testcase_26 AC 290 ms
112,256 KB
testcase_27 AC 282 ms
112,512 KB
testcase_28 AC 251 ms
112,384 KB
testcase_29 AC 215 ms
112,384 KB
testcase_30 AC 220 ms
113,024 KB
testcase_31 AC 208 ms
112,640 KB
testcase_32 AC 290 ms
112,256 KB
testcase_33 AC 255 ms
112,384 KB
testcase_34 AC 257 ms
112,768 KB
testcase_35 AC 278 ms
112,768 KB
testcase_36 AC 278 ms
112,128 KB
testcase_37 AC 261 ms
112,256 KB
testcase_38 AC 279 ms
112,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ACL-for-python by shakayami
# https://github.com/shakayami/ACL-for-python

class fenwick_tree():
    n = 1
    data = [0 for i in range(n)]

    def __init__(self, N):
        self.n = N
        self.data = [0 for i in range(N)]

    def add(self, p, x):
        assert 0 <= p < self.n, "0<=p<n,p={0},n={1}".format(p, self.n)
        p += 1
        while(p <= self.n):
            self.data[p-1] += x
            p += p & -p

    def sum(self, l, r):
        assert (0 <= l and l <= r and r <=
                self.n), "0<=l<=r<=n,l={0},r={1},n={2}".format(l, r, self.n)
        return self.sum0(r)-self.sum0(l)

    def sum0(self, r):
        s = 0
        while(r > 0):
            s += self.data[r-1]
            r -= r & -r
        return s

import sys

n = int(input())
p = list(map(int, input().split()))
for i in range(n):
  p[i] -= 1
q = [0] * n
for i in range(n):
  q[p[i]] = i

fw = fenwick_tree(n)
x, y = [0] * n, [0] * n
for i in range(n - 1):
  y1 = fw.sum(0, q[i])
  y2 = fw.sum(0, q[i + 1])
  if y1 % 2 != 0 and y2 % 2 != 0:
    print("No")
    sys.exit(0)
  if y2 % 2 == 0:
    if y1 % 2 != 0 or q[i] < q[i + 1]:
      q[i], q[i + 1] = q[i + 1], q[i]
      y1, y2 = y2, y1
  x[i] = p[q[i]]
  y[i] = y1
  fw.add(q[i], 1)
x[-1] = p[q[-1]]
y[-1] = fw.sum(0, q[-1])
if y[-1] % 2 != 0:
  print("No")
  sys.exit(0)

print("Yes")
for i in range(n):
  print(x[i] + 1, y[i] + 1)
0