結果

問題 No.2299 Antitypoglycemia
ユーザー ManjushriMitraManjushriMitra
提出日時 2024-12-29 15:41:04
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 4,218 bytes
コンパイル時間 3,342 ms
コンパイル使用メモリ 250,816 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-12-29 15:41:08
合計ジャッジ時間 4,774 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,820 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 4 ms
6,816 KB
testcase_03 AC 7 ms
8,960 KB
testcase_04 AC 8 ms
8,960 KB
testcase_05 AC 7 ms
7,296 KB
testcase_06 AC 8 ms
8,960 KB
testcase_07 AC 4 ms
6,816 KB
testcase_08 AC 6 ms
8,576 KB
testcase_09 AC 8 ms
9,088 KB
testcase_10 AC 6 ms
6,816 KB
testcase_11 AC 5 ms
6,816 KB
testcase_12 AC 9 ms
9,216 KB
testcase_13 AC 10 ms
10,752 KB
testcase_14 AC 4 ms
6,816 KB
testcase_15 AC 4 ms
6,820 KB
testcase_16 AC 6 ms
6,816 KB
testcase_17 AC 5 ms
6,820 KB
testcase_18 AC 10 ms
11,008 KB
testcase_19 AC 11 ms
11,008 KB
testcase_20 AC 9 ms
10,880 KB
testcase_21 AC 11 ms
11,008 KB
testcase_22 AC 10 ms
11,008 KB
testcase_23 AC 3 ms
6,820 KB
testcase_24 AC 4 ms
6,816 KB
testcase_25 AC 3 ms
6,816 KB
testcase_26 AC 3 ms
6,816 KB
testcase_27 AC 3 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,m,n) for(int i=m; i<int(n); ++i)
#define repll(i,m,n) for(ll i=m; i<ll(n); ++i)
#define all(a) (a).begin(), (a).end()
#define rall(a) (a).rbegin(), (a).rend()
#define fi first
#define se second

template<typename T> bool chmin(T& a, T b){ if(a > b){a = b; return true;} return false; }
template<typename T> bool chmax(T& a, T b){ if(a < b){a = b; return true;} return false; }

template<typename T> T gcd(T a, T b){ return a % b ? gcd(b, a % b) : b; }
template<typename T> T lcm(T a, T b){ return a / gcd(a, b) * b; }

template<int MOD> struct Fp {
    // inner value
    long long val;

    // constructor
    constexpr Fp() : val(0) { }
    constexpr Fp(long long v) : val(v % MOD) {
        if (val < 0) val += MOD;
    }
    constexpr long long get() const { return val; }
    constexpr int get_mod() const { return MOD; }

    // arithmetic operators
    constexpr Fp operator + () const { return Fp(*this); }
    constexpr Fp operator - () const { return Fp(0) - Fp(*this); }
    constexpr Fp operator + (const Fp &r) const { return Fp(*this) += r; }
    constexpr Fp operator - (const Fp &r) const { return Fp(*this) -= r; }
    constexpr Fp operator * (const Fp &r) const { return Fp(*this) *= r; }
    constexpr Fp operator / (const Fp &r) const { return Fp(*this) /= r; }
    constexpr Fp& operator += (const Fp &r) {
        val += r.val;
        if (val >= MOD) val -= MOD;
        return *this;
    }
    constexpr Fp& operator -= (const Fp &r) {
        val -= r.val;
        if (val < 0) val += MOD;
        return *this;
    }
    constexpr Fp& operator *= (const Fp &r) {
        val = val * r.val % MOD;
        return *this;
    }
    constexpr Fp& operator /= (const Fp &r) {
        long long a = r.val, b = MOD, u = 1, v = 0;
        while (b) {
            long long t = a / b;
            a -= t * b, swap(a, b);
            u -= t * v, swap(u, v);
        }
        val = val * u % MOD;
        if (val < 0) val += MOD;
        return *this;
    }
    constexpr Fp pow(long long n) const {
        Fp res(1), mul(*this);
        while (n > 0) {
            if (n & 1) res *= mul;
            mul *= mul;
            n >>= 1;
        }
        return res;
    }
    constexpr Fp inv() const {
        Fp res(1), div(*this);
        return res / div;
    }

    // other operators
    constexpr bool operator == (const Fp &r) const {
        return this->val == r.val;
    }
    constexpr bool operator != (const Fp &r) const {
        return this->val != r.val;
    }
    constexpr Fp& operator ++ () {
        ++val;
        if (val >= MOD) val -= MOD;
        return *this;
    }
    constexpr Fp& operator -- () {
        if (val == 0) val += MOD;
        --val;
        return *this;
    }
    constexpr Fp operator ++ (int) const {
        Fp res = *this;
        ++*this;
        return res;
    }
    constexpr Fp operator -- (int) const {
        Fp res = *this;
        --*this;
        return res;
    }
    friend constexpr istream& operator >> (istream &is, Fp<MOD> &x) {
        is >> x.val;
        x.val %= MOD;
        if (x.val < 0) x.val += MOD;
        return is;
    }
    friend constexpr ostream& operator << (ostream &os, const Fp<MOD> &x) {
        return os << x.val;
    }
    friend constexpr Fp<MOD> pow(const Fp<MOD> &r, long long n) {
        return r.pow(n);
    }
    friend constexpr Fp<MOD> inv(const Fp<MOD> &r) {
        return r.inv();
    }
};

const int MOD = 998244353;
using mint = Fp<MOD>;

vector<mint> fact(200100, -1);

mint func(int x){
    if(fact[x] != -1){
        return fact[x];
    }else if(x == 1){
        return fact[x] = 1;
    }else{
        return fact[x] = mint(x)*func(x-1);
    }
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int N, A, B;
    cin >> N >> A >> B;

    mint ans = 0;
    if(N <= 10){
        vector<int> p;
        for(int i = 1; i <= N; ++i) p.push_back(i);
        do{
            if(p[0] != A && p.back() != B) ++ans;
        }while(next_permutation(all(p)));
    }else{
        ans += (func(N) - func(N-1) - func(N-1));
        if(A != B) ans += func(N-2);
    }

    cout << ans << endl;
    return 0;
}
0