結果

問題 No.1885 Flat Permutation
ユーザー chineristACchineristAC
提出日時 2022-03-25 23:48:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 959 ms / 2,000 ms
コード長 1,269 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 311,384 KB
最終ジャッジ日時 2024-10-14 08:06:22
合計ジャッジ時間 18,528 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
69,248 KB
testcase_01 AC 74 ms
69,760 KB
testcase_02 AC 74 ms
69,504 KB
testcase_03 AC 103 ms
88,704 KB
testcase_04 AC 70 ms
69,376 KB
testcase_05 AC 70 ms
69,524 KB
testcase_06 AC 70 ms
69,376 KB
testcase_07 AC 71 ms
69,376 KB
testcase_08 AC 70 ms
69,408 KB
testcase_09 AC 69 ms
69,632 KB
testcase_10 AC 69 ms
69,248 KB
testcase_11 AC 69 ms
69,376 KB
testcase_12 AC 68 ms
69,376 KB
testcase_13 AC 70 ms
69,120 KB
testcase_14 AC 68 ms
69,504 KB
testcase_15 AC 69 ms
69,248 KB
testcase_16 AC 67 ms
69,632 KB
testcase_17 AC 69 ms
69,376 KB
testcase_18 AC 69 ms
69,120 KB
testcase_19 AC 944 ms
311,372 KB
testcase_20 AC 952 ms
311,384 KB
testcase_21 AC 925 ms
311,052 KB
testcase_22 AC 864 ms
289,104 KB
testcase_23 AC 69 ms
69,376 KB
testcase_24 AC 69 ms
68,992 KB
testcase_25 AC 70 ms
69,376 KB
testcase_26 AC 69 ms
69,376 KB
testcase_27 AC 945 ms
311,356 KB
testcase_28 AC 949 ms
311,368 KB
testcase_29 AC 947 ms
311,072 KB
testcase_30 AC 949 ms
310,756 KB
testcase_31 AC 948 ms
310,952 KB
testcase_32 AC 69 ms
69,504 KB
testcase_33 AC 71 ms
69,504 KB
testcase_34 AC 70 ms
69,504 KB
testcase_35 AC 950 ms
311,076 KB
testcase_36 AC 939 ms
311,312 KB
testcase_37 AC 69 ms
68,992 KB
testcase_38 AC 70 ms
68,992 KB
testcase_39 AC 70 ms
69,248 KB
testcase_40 AC 213 ms
118,784 KB
testcase_41 AC 430 ms
175,452 KB
testcase_42 AC 140 ms
99,968 KB
testcase_43 AC 935 ms
311,156 KB
testcase_44 AC 959 ms
311,344 KB
testcase_45 AC 951 ms
311,196 KB
testcase_46 AC 940 ms
311,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

sys.setrecursionlimit(3*10**5)

def cmb(n, r, mod):
    if ( r<0 or r>n ):
        return 0
    return (g1[n] * g2[r] % mod) * g2[n-r] % mod

mod = 998244353
N = 3*10**5
g1 = [1]*(N+1)
g2 = [1]*(N+1)
inverse = [1]*(N+1)

for i in range( 2, N + 1 ):
    g1[i]=( ( g1[i-1] * i ) % mod )
    inverse[i]=( ( -inverse[mod % i] * (mod//i) ) % mod )
    g2[i]=( (g2[i-1] * inverse[i]) % mod )
inverse[0]=0

N,X,Y = mi()
if X > Y:
    X,Y = Y,X

if X!=1:
    N,X,Y = N-X,1,Y-X
    if Y==1:
        if N==1:
            exit(print(1))
        else:
            exit(print(0))

memo = {(1,1,1):1,(4,1,4):2}
def calc(n,x,y):
    if (n,x,y) in memo:
        return memo[n,x,y]
    
    if y==x+1:
        memo[n,x,y] = 1
        return memo[n,x,y]
    
    res = 0
    if x+1!=y:
        res += calc(n-1,1,y-1)
        res %= mod
    if x+1!=y and x+2!=y and x+3!=y and x+3 <= n:
        res += calc(n-3,1,y-3)
        res %= mod
    memo[n,x,y] = res
    return res

print(calc(N,X,Y))
#print(memo)





0