結果
問題 | No.482 あなたの名は |
ユーザー | maspy |
提出日時 | 2020-01-27 20:55:09 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,596 bytes |
コンパイル時間 | 383 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 29,580 KB |
最終ジャッジ日時 | 2024-09-14 14:08:38 |
合計ジャッジ時間 | 13,668 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,496 KB |
testcase_01 | AC | 31 ms
10,752 KB |
testcase_02 | AC | 31 ms
10,496 KB |
testcase_03 | AC | 34 ms
10,752 KB |
testcase_04 | AC | 33 ms
10,752 KB |
testcase_05 | AC | 30 ms
10,624 KB |
testcase_06 | AC | 31 ms
10,624 KB |
testcase_07 | WA | - |
testcase_08 | AC | 32 ms
10,752 KB |
testcase_09 | AC | 31 ms
10,624 KB |
testcase_10 | AC | 31 ms
10,752 KB |
testcase_11 | AC | 32 ms
10,752 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 32 ms
10,624 KB |
testcase_15 | AC | 732 ms
29,576 KB |
testcase_16 | AC | 733 ms
29,444 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 737 ms
29,576 KB |
testcase_20 | WA | - |
testcase_21 | AC | 736 ms
29,320 KB |
testcase_22 | AC | 731 ms
29,448 KB |
testcase_23 | AC | 740 ms
29,576 KB |
testcase_24 | WA | - |
testcase_25 | AC | 739 ms
29,572 KB |
testcase_26 | AC | 736 ms
29,448 KB |
testcase_27 | AC | 740 ms
29,576 KB |
testcase_28 | AC | 736 ms
29,580 KB |
testcase_29 | AC | 683 ms
29,572 KB |
testcase_30 | AC | 31 ms
10,624 KB |
ソースコード
import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines class BinaryIndexedTree(): def __init__(self, seq): self.size = len(seq) self.depth = self.size.bit_length() self.build(seq) def build(self,seq): data = seq size = self.size for i,x in enumerate(data): j = i+(i&(-i)) if j < size: data[j] += data[i] self.data = data def __repr__(self): return self.data.__repr__() def get_sum(self,i): data = self.data s = 0 while i: s += data[i] i -= i & -i return s def add(self, i, x): data = self.data size = self.size while i < size: data[i] += x i += i & -i def find_kth_element(self,k): data = self.data; size = self.size x,sx = 0,0 dx = 1 << (self.depth) for i in range(self.depth - 1, -1, -1): dx = (1 << i) if x + dx >= size: continue y = x + dx sy = sx + data[y] if sy < k: x,sx = y,sy return x + 1 def Inversion(seq): # seqは、1,2,...,Nの順列 N = len(seq) bit = BinaryIndexedTree([0] * (N+1)) inv = N*(N-1)//2 for x in seq: inv -= bit.get_sum(x) bit.add(x,1) return inv N,K,*D = map(int,read().split()) x = Inversion(D) answer = 'YES' if K >= x and (K-x) % 2 == 0 else 'NO' print(answer)