結果
問題 | No.1115 二つの数列 / Two Sequences |
ユーザー | 👑 Kazun |
提出日時 | 2020-07-17 21:56:16 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,204 bytes |
コンパイル時間 | 263 ms |
コンパイル使用メモリ | 82,348 KB |
実行使用メモリ | 107,240 KB |
最終ジャッジ日時 | 2024-05-07 08:21:46 |
合計ジャッジ時間 | 4,208 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 113 ms
72,704 KB |
testcase_01 | AC | 40 ms
52,736 KB |
testcase_02 | AC | 35 ms
52,608 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
class Permutation_Error(Exception): pass class Permutation(): def __init__(self,n,p=[]): if p==[]: self.p=[i for i in range(n)] else: self.p=p self.n=n def __str__(self): return "["+", ".join(map(str,self.p))+"]" def __mul__(self,other): T=[] n=max(self.n,other.n) for i in range(n): T.append(self.Replace(other.Replace(i))) return Permutation(n,T) def __truediv__(self,other): pass def __sgn__(self): if self.Minimum_Transposition()%2: return -1 else: return 1 def Inverse(self): Q=list(range(self.n)) for k in range(self.n): Q[self.p[k]]=k return Permutation(self.n,Q) def Transposition(self,u,v): a=self.p.index(u) b=self.p.index(v) self.p[a]=v self.p[b]=u def Minimum_Transposition(self): X=self.Cycle_Division() T=0 for d in X: T+=len(d)-1 return T def Cycle_Multiplication(self,*C): X=[self.p.index(k) for k in C] N=len(C) for i in range(N): self.p[X[i]]=C[(i+1)%N] def Cycle_Division(self): T=[False]*self.n k=0 v=0 A=[] for k in range(self.n): if (not T[k]) and self.p[k]!=k: v=k B=[k] while self.p[v]!=k: v=self.p[v] T[v]=True B.append(v) A.append(B) return A def Replace(self,x): if x<self.n: return self.p[x] else: return x def Order(self): L=self.Cycle_Division() C=[] for K in L: C.append(len(K)) return LCM(*C) #---------------------------------------------- N=int(input()) A=Permutation(N,list(map(lambda x:int(x)-1,input().split()))) B=Permutation(N,list(map(lambda x:int(x)-1,input().split()))) C=(B.Inverse()*A).p S=0 for i in range(N): u=C.index(i) S+=u-i del C[u] C.insert(i,i) print(S)