QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#316896 | #8171. Cola | ucup-team008# | AC ✓ | 180ms | 198580kb | C++20 | 8.3kb | 2024-01-28 05:52:07 | 2024-01-28 05:52:07 |
Judging History
answer
#include <algorithm>
#include <array>
#include <bitset>
#include <cassert>
#include <chrono>
#include <cstring>
#include <functional>
#include <iomanip>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <vector>
using namespace std;
// BEGIN NO SAD
#define rep(i, a, b) for(int i = a; i < (b); ++i)
#define trav(a, x) for(auto& a : x)
#define all(x) x.begin(), x.end()
#define sz(x) (int)(x).size()
#define mp make_pair
#define pb push_back
#define eb emplace_back
#define lb lower_bound
#define ub upper_bound
typedef vector<int> vi;
#define f first
#define s second
#define derr if(1) cerr
void __print(int x) {cerr << x;}
void __print(long x) {cerr << x;}
void __print(long long x) {cerr << x;}
void __print(unsigned x) {cerr << x;}
void __print(unsigned long x) {cerr << x;}
void __print(unsigned long long x) {cerr << x;}
void __print(float x) {cerr << x;}
void __print(double x) {cerr << x;}
void __print(long double x) {cerr << x;}
void __print(char x) {cerr << '\'' << x << '\'';}
void __print(const char *x) {cerr << '\"' << x << '\"';}
void __print(const string &x) {cerr << '\"' << x << '\"';}
void __print(bool x) {cerr << (x ? "true" : "false");}
template<typename T, typename V>
void __print(const pair<T, V> &x) {cerr << '{'; __print(x.first); cerr << ", "; __print(x.second); cerr << '}';}
template<typename T>
void __print(const T &x) {int f = 0; cerr << '{'; for (auto &i: x) cerr << (f++ ? ", " : ""), __print(i); cerr << "}";}
void _print() {cerr << "]\n";}
template <typename T, typename... V>
void _print(T t, V... v) {__print(t); if (sizeof...(v)) cerr << ", "; _print(v...);}
#define debug(x...) cerr << "\e[91m"<<__func__<<":"<<__LINE__<<" [" << #x << "] = ["; _print(x); cerr << "\e[39m" << flush;
// END NO SAD
template<class Fun>
class y_combinator_result {
Fun fun_;
public:
template<class T>
explicit y_combinator_result(T &&fun): fun_(std::forward<T>(fun)) {}
template<class ...Args>
decltype(auto) operator()(Args &&...args) {
return fun_(std::ref(*this), std::forward<Args>(args)...);
}
};
template<class Fun>
decltype(auto) y_combinator(Fun &&fun) {
return y_combinator_result<std::decay_t<Fun>>(std::forward<Fun>(fun));
}
template<class T>
bool updmin(T& a, T b) {
if(b < a) {
a = b;
return true;
}
return false;
}
template<class T>
bool updmax(T& a, T b) {
if(b > a) {
a = b;
return true;
}
return false;
}
typedef int64_t ll;
struct barrett_reduction {
unsigned mod;
uint64_t div;
barrett_reduction(unsigned m) : mod(m), div(-1LLU / m) {}
unsigned operator()(uint64_t a) const {
#ifdef __SIZEOF_INT128__
uint64_t q = uint64_t(__uint128_t(div) * a >> 64);
uint64_t r = a - q * mod;
return unsigned(r < mod ? r : r - mod);
#endif
return unsigned(a % mod);
}
};
template<const int &MOD, const barrett_reduction &barrett>
struct _b_int {
int val;
_b_int(int64_t v = 0) {
if (v < 0) v = v % MOD + MOD;
if (v >= MOD) v %= MOD;
val = int(v);
}
_b_int(uint64_t v) {
if (v >= uint64_t(MOD)) v %= MOD;
val = int(v);
}
_b_int(int v) : _b_int(int64_t(v)) {}
_b_int(unsigned v) : _b_int(uint64_t(v)) {}
static int inv_mod(int a, int m = MOD) {
// https://en.wikipedia.org/wiki/Extended_Euclidean_algorithm#Example
int g = m, r = a, x = 0, y = 1;
while (r != 0) {
int q = g / r;
g %= r; swap(g, r);
x -= q * y; swap(x, y);
}
return x < 0 ? x + m : x;
}
explicit operator int() const { return val; }
explicit operator unsigned() const { return val; }
explicit operator int64_t() const { return val; }
explicit operator uint64_t() const { return val; }
explicit operator double() const { return val; }
explicit operator long double() const { return val; }
_b_int& operator+=(const _b_int &other) {
val -= MOD - other.val;
if (val < 0) val += MOD;
return *this;
}
_b_int& operator-=(const _b_int &other) {
val -= other.val;
if (val < 0) val += MOD;
return *this;
}
static unsigned fast_mod(uint64_t x) {
#if !defined(_WIN32) || defined(_WIN64)
return barrett(x);
#endif
// Optimized mod for Codeforces 32-bit machines.
// x must be less than 2^32 * MOD for this to work, so that x / MOD fits in an unsigned 32-bit int.
unsigned x_high = unsigned(x >> 32), x_low = unsigned(x);
unsigned quot, rem;
asm("divl %4\n"
: "=a" (quot), "=d" (rem)
: "d" (x_high), "a" (x_low), "r" (MOD));
return rem;
}
_b_int& operator*=(const _b_int &other) {
val = fast_mod(uint64_t(val) * other.val);
return *this;
}
_b_int& operator/=(const _b_int &other) {
return *this *= other.inv();
}
friend _b_int operator+(const _b_int &a, const _b_int &b) { return _b_int(a) += b; }
friend _b_int operator-(const _b_int &a, const _b_int &b) { return _b_int(a) -= b; }
friend _b_int operator*(const _b_int &a, const _b_int &b) { return _b_int(a) *= b; }
friend _b_int operator/(const _b_int &a, const _b_int &b) { return _b_int(a) /= b; }
_b_int& operator++() {
val = val == MOD - 1 ? 0 : val + 1;
return *this;
}
_b_int& operator--() {
val = val == 0 ? MOD - 1 : val - 1;
return *this;
}
_b_int operator++(int) { _b_int before = *this; ++*this; return before; }
_b_int operator--(int) { _b_int before = *this; --*this; return before; }
_b_int operator-() const {
return val == 0 ? 0 : MOD - val;
}
friend bool operator==(const _b_int &a, const _b_int &b) { return a.val == b.val; }
friend bool operator!=(const _b_int &a, const _b_int &b) { return a.val != b.val; }
friend bool operator<(const _b_int &a, const _b_int &b) { return a.val < b.val; }
friend bool operator>(const _b_int &a, const _b_int &b) { return a.val > b.val; }
friend bool operator<=(const _b_int &a, const _b_int &b) { return a.val <= b.val; }
friend bool operator>=(const _b_int &a, const _b_int &b) { return a.val >= b.val; }
_b_int inv() const {
return inv_mod(val);
}
_b_int pow(int64_t p) const {
if (p < 0)
return inv().pow(-p);
_b_int a = *this, result = 1;
while (p > 0) {
if (p & 1)
result *= a;
p >>= 1;
if (p > 0)
a *= a;
}
return result;
}
friend ostream& operator<<(ostream &os, const _b_int &m) {
return os << m.val;
}
friend istream& operator>>(istream &is, _b_int &m) {
int64_t x;
is >> x;
m = x;
return is;
}
};
int MOD = 998244353;
barrett_reduction barrett(MOD);
using mnum = _b_int<MOD, barrett>;
const int SZ = 2e7;
mnum facs[SZ];
mnum ifacs[SZ];
mnum nck(int n, int k) {
if(k<0||k>n) return 0;
return facs[n]*ifacs[k]*ifacs[n-k];
}
void solve() {
facs[0] = 1;
for(int i = 1; i < SZ; i++) facs[i] = facs[i-1]*i;
ifacs[SZ-1] = 1/facs[SZ-1];
for(int i = SZ-2; i >= 0; i--) ifacs[i] = ifacs[i+1]*(i+1);
int n, m;
cin >> n >> m;
mnum ret = 0;
vector<int> sign(m);
sign[0] = 1;
for(int k = 1; true; k++) {
int x = k * (3*k-1) / 2;
if(x >= sz(sign)) break;
if(k%2) sign[x]--;
else sign[x]++;
x = k * (3*k+1) / 2;
if(k%2) sign[x]--;
else sign[x]++;
}
for(int i = 0; i < m; i++) {
if(sign[i] == 0) continue;
mnum curr = sign[i];
int other = m - 1 - i;
mnum scale = nck(other + n, n);
ret += curr * scale;
}
ret *= ifacs[n];
cout << ret << "\n";
}
// what would chika do
// are there edge cases (N=1?)
// are array sizes proper (scaled by proper constant, for example 2* for koosaga tree)
// integer overflow?
// DS reset properly between test cases
// are you doing geometry in floating points
// are you not using modint when you should
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
solve();
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 168ms
memory: 159908kb
input:
2 1
output:
499122177
result:
ok "499122177"
Test #2:
score: 0
Accepted
time: 176ms
memory: 160036kb
input:
1 1
output:
1
result:
ok "1"
Test #3:
score: 0
Accepted
time: 171ms
memory: 160104kb
input:
167 91
output:
469117530
result:
ok "469117530"
Test #4:
score: 0
Accepted
time: 176ms
memory: 194296kb
input:
9806463 8975779
output:
125384417
result:
ok "125384417"
Test #5:
score: 0
Accepted
time: 180ms
memory: 193468kb
input:
9138576 8731432
output:
306972756
result:
ok "306972756"
Test #6:
score: 0
Accepted
time: 172ms
memory: 194660kb
input:
9978791 9033584
output:
932159263
result:
ok "932159263"
Test #7:
score: 0
Accepted
time: 171ms
memory: 197756kb
input:
9811954 9790000
output:
404679920
result:
ok "404679920"
Test #8:
score: 0
Accepted
time: 177ms
memory: 195568kb
input:
9685105 9276909
output:
32996715
result:
ok "32996715"
Test #9:
score: 0
Accepted
time: 166ms
memory: 198420kb
input:
10000000 10000000
output:
309225852
result:
ok "309225852"
Test #10:
score: 0
Accepted
time: 174ms
memory: 198352kb
input:
10000000 9999999
output:
635234302
result:
ok "635234302"
Test #11:
score: 0
Accepted
time: 171ms
memory: 198556kb
input:
10000000 9999998
output:
239117935
result:
ok "239117935"
Test #12:
score: 0
Accepted
time: 171ms
memory: 198432kb
input:
10000000 9999997
output:
294859983
result:
ok "294859983"
Test #13:
score: 0
Accepted
time: 170ms
memory: 198404kb
input:
9999999 9999999
output:
305530110
result:
ok "305530110"
Test #14:
score: 0
Accepted
time: 169ms
memory: 198516kb
input:
9999999 9999998
output:
164959553
result:
ok "164959553"
Test #15:
score: 0
Accepted
time: 178ms
memory: 198572kb
input:
9999999 9999997
output:
532215262
result:
ok "532215262"
Test #16:
score: 0
Accepted
time: 175ms
memory: 198444kb
input:
9999999 9999996
output:
123628609
result:
ok "123628609"
Test #17:
score: 0
Accepted
time: 173ms
memory: 198352kb
input:
9999998 9999998
output:
223852357
result:
ok "223852357"
Test #18:
score: 0
Accepted
time: 179ms
memory: 198452kb
input:
9999998 9999997
output:
75877991
result:
ok "75877991"
Test #19:
score: 0
Accepted
time: 178ms
memory: 198548kb
input:
9999998 9999996
output:
494540335
result:
ok "494540335"
Test #20:
score: 0
Accepted
time: 171ms
memory: 198404kb
input:
9999998 9999995
output:
19191738
result:
ok "19191738"
Test #21:
score: 0
Accepted
time: 178ms
memory: 198556kb
input:
9999997 9999997
output:
238385746
result:
ok "238385746"
Test #22:
score: 0
Accepted
time: 173ms
memory: 198508kb
input:
9999997 9999996
output:
138191521
result:
ok "138191521"
Test #23:
score: 0
Accepted
time: 173ms
memory: 198580kb
input:
9999997 9999995
output:
721536184
result:
ok "721536184"
Test #24:
score: 0
Accepted
time: 166ms
memory: 198496kb
input:
9999997 9999994
output:
627112720
result:
ok "627112720"
Test #25:
score: 0
Accepted
time: 167ms
memory: 166488kb
input:
8113616 1826492
output:
629546539
result:
ok "629546539"
Test #26:
score: 0
Accepted
time: 178ms
memory: 175948kb
input:
7230333 4233627
output:
870135249
result:
ok "870135249"
Test #27:
score: 0
Accepted
time: 177ms
memory: 197016kb
input:
9734872 9617286
output:
780426509
result:
ok "780426509"
Test #28:
score: 0
Accepted
time: 169ms
memory: 184356kb
input:
6780022 6393958
output:
508662111
result:
ok "508662111"
Test #29:
score: 0
Accepted
time: 175ms
memory: 166900kb
input:
4986441 1909344
output:
762587564
result:
ok "762587564"
Test #30:
score: 0
Accepted
time: 167ms
memory: 159864kb
input:
9936540 91728
output:
651924678
result:
ok "651924678"
Test #31:
score: 0
Accepted
time: 163ms
memory: 159808kb
input:
9099529 94239
output:
775532638
result:
ok "775532638"
Test #32:
score: 0
Accepted
time: 168ms
memory: 160036kb
input:
9564814 93545
output:
474538902
result:
ok "474538902"
Test #33:
score: 0
Accepted
time: 168ms
memory: 159812kb
input:
9707744 92094
output:
354024226
result:
ok "354024226"
Test #34:
score: 0
Accepted
time: 172ms
memory: 160108kb
input:
9167687 94820
output:
858989558
result:
ok "858989558"
Test #35:
score: 0
Accepted
time: 173ms
memory: 159880kb
input:
10000000 100000
output:
609345536
result:
ok "609345536"
Test #36:
score: 0
Accepted
time: 164ms
memory: 159868kb
input:
10000000 99999
output:
217258255
result:
ok "217258255"
Test #37:
score: 0
Accepted
time: 176ms
memory: 159908kb
input:
10000000 99998
output:
485057696
result:
ok "485057696"
Test #38:
score: 0
Accepted
time: 164ms
memory: 159848kb
input:
10000000 99997
output:
193579142
result:
ok "193579142"
Test #39:
score: 0
Accepted
time: 172ms
memory: 160032kb
input:
9999999 100000
output:
584105896
result:
ok "584105896"
Test #40:
score: 0
Accepted
time: 173ms
memory: 159808kb
input:
9999999 99999
output:
707014865
result:
ok "707014865"
Test #41:
score: 0
Accepted
time: 165ms
memory: 159808kb
input:
9999999 99998
output:
872987417
result:
ok "872987417"
Test #42:
score: 0
Accepted
time: 164ms
memory: 159816kb
input:
9999999 99997
output:
707304988
result:
ok "707304988"
Test #43:
score: 0
Accepted
time: 164ms
memory: 159812kb
input:
9999998 100000
output:
789028925
result:
ok "789028925"
Test #44:
score: 0
Accepted
time: 165ms
memory: 160040kb
input:
9999998 99999
output:
628266237
result:
ok "628266237"
Test #45:
score: 0
Accepted
time: 164ms
memory: 159804kb
input:
9999998 99998
output:
38358057
result:
ok "38358057"
Test #46:
score: 0
Accepted
time: 164ms
memory: 159816kb
input:
9999998 99997
output:
785931240
result:
ok "785931240"
Test #47:
score: 0
Accepted
time: 168ms
memory: 159908kb
input:
9999997 100000
output:
945452715
result:
ok "945452715"
Test #48:
score: 0
Accepted
time: 172ms
memory: 159816kb
input:
9999997 99999
output:
537126025
result:
ok "537126025"
Test #49:
score: 0
Accepted
time: 164ms
memory: 159804kb
input:
9999997 99998
output:
837196653
result:
ok "837196653"
Test #50:
score: 0
Accepted
time: 168ms
memory: 160032kb
input:
9999997 99997
output:
263045713
result:
ok "263045713"
Test #51:
score: 0
Accepted
time: 169ms
memory: 160064kb
input:
2 2
output:
1
result:
ok "1"
Test #52:
score: 0
Accepted
time: 164ms
memory: 159812kb
input:
3 3
output:
831870295
result:
ok "831870295"
Test #53:
score: 0
Accepted
time: 173ms
memory: 159808kb
input:
4 4
output:
374341633
result:
ok "374341633"
Test #54:
score: 0
Accepted
time: 168ms
memory: 159804kb
input:
3 2
output:
499122177
result:
ok "499122177"
Test #55:
score: 0
Accepted
time: 177ms
memory: 159848kb
input:
4 3
output:
623902721
result:
ok "623902721"
Test #56:
score: 0
Accepted
time: 164ms
memory: 159808kb
input:
5 4
output:
890101215
result:
ok "890101215"
Test #57:
score: 0
Accepted
time: 172ms
memory: 159872kb
input:
3 1
output:
166374059
result:
ok "166374059"
Test #58:
score: 0
Accepted
time: 161ms
memory: 159904kb
input:
4 2
output:
166374059
result:
ok "166374059"
Test #59:
score: 0
Accepted
time: 173ms
memory: 159808kb
input:
5 3
output:
16637406
result:
ok "16637406"
Test #60:
score: 0
Accepted
time: 165ms
memory: 159804kb
input:
6 4
output:
508827330
result:
ok "508827330"
Test #61:
score: 0
Accepted
time: 164ms
memory: 159816kb
input:
4 1
output:
291154603
result:
ok "291154603"
Test #62:
score: 0
Accepted
time: 177ms
memory: 159768kb
input:
5 2
output:
291154603
result:
ok "291154603"
Test #63:
score: 0
Accepted
time: 169ms
memory: 160036kb
input:
6 3
output:
859599304
result:
ok "859599304"
Test #64:
score: 0
Accepted
time: 169ms
memory: 160064kb
input:
7 4
output:
694809760
result:
ok "694809760"
Test #65:
score: 0
Accepted
time: 168ms
memory: 160040kb
input:
5629201 38642
output:
327294391
result:
ok "327294391"
Test #66:
score: 0
Accepted
time: 168ms
memory: 160068kb
input:
126092 74219
output:
27573951
result:
ok "27573951"
Test #67:
score: 0
Accepted
time: 169ms
memory: 160100kb
input:
8593075 8689
output:
393785113
result:
ok "393785113"
Test #68:
score: 0
Accepted
time: 164ms
memory: 159908kb
input:
1076972 58637
output:
600806929
result:
ok "600806929"
Test #69:
score: 0
Accepted
time: 164ms
memory: 159756kb
input:
463217 39187
output:
408712022
result:
ok "408712022"
Extra Test:
score: 0
Extra Test Passed