結果
問題 | No.482 あなたの名は |
ユーザー | maspy |
提出日時 | 2020-01-27 20:57:28 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,596 bytes |
コンパイル時間 | 325 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 29,704 KB |
最終ジャッジ日時 | 2024-09-14 14:11:46 |
合計ジャッジ時間 | 12,861 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,752 KB |
testcase_01 | AC | 30 ms
10,624 KB |
testcase_02 | AC | 30 ms
10,496 KB |
testcase_03 | AC | 31 ms
10,624 KB |
testcase_04 | AC | 30 ms
10,624 KB |
testcase_05 | AC | 31 ms
10,752 KB |
testcase_06 | AC | 30 ms
10,752 KB |
testcase_07 | WA | - |
testcase_08 | AC | 31 ms
10,752 KB |
testcase_09 | AC | 30 ms
10,752 KB |
testcase_10 | AC | 31 ms
10,624 KB |
testcase_11 | AC | 32 ms
10,752 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 30 ms
10,752 KB |
testcase_15 | AC | 732 ms
29,452 KB |
testcase_16 | AC | 737 ms
29,576 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 736 ms
29,576 KB |
testcase_20 | WA | - |
testcase_21 | AC | 733 ms
29,576 KB |
testcase_22 | AC | 739 ms
29,448 KB |
testcase_23 | AC | 734 ms
29,700 KB |
testcase_24 | WA | - |
testcase_25 | AC | 737 ms
29,576 KB |
testcase_26 | AC | 739 ms
29,424 KB |
testcase_27 | AC | 742 ms
29,576 KB |
testcase_28 | AC | 729 ms
29,444 KB |
testcase_29 | AC | 679 ms
29,704 KB |
testcase_30 | AC | 29 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)