結果

問題 No.2254 Reverse Only
ユーザー gew1fw
提出日時 2025-06-12 18:39:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 807 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 147,436 KB
最終ジャッジ日時 2025-06-12 18:40:17
合計ジャッジ時間 8,942 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 42 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def main():
    import sys
    input = sys.stdin.read().split()
    idx = 0
    N, k = int(input[idx]), int(input[idx+1])
    idx +=2
    A = list(map(int, input[idx:idx+N]))
    idx +=N
    B = list(map(int, input[idx:idx+N]))
    
    # Check if A and B are permutations
    count = defaultdict(int)
    for a in A:
        count[a] +=1
    for b in B:
        count[b] -=1
        if count[b] <0:
            print("No")
            return
    for v in count.values():
        if v !=0:
            print("No")
            return
    
    if k ==1 or k ==2:
        print("Yes")
        return
    
    if N <k:
        if A == B:
            print("Yes")
        else:
            print("No")
    else:
        print("Yes")
    
if __name__ == "__main__":
    main()
0