QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#55886#2834. Nonsenseforeverlasting#WA 28ms101920kbC++173.2kb2022-10-15 15:33:162022-10-15 15:33:18

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-10-15 15:33:18]
  • 评测
  • 测评结果:WA
  • 用时:28ms
  • 内存:101920kb
  • [2022-10-15 15:33:16]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define LL long long
#define gc getchar
#define pb push_back
#define fi first
#define se second
#define Pair pair<int,int>
inline int read(){
	int s=0,w=1,ch=gc();
	while(ch<'0'||ch>'9'){
		if(ch=='-')w=-1;
		ch=gc();
	}
	while(ch>='0'&&ch<='9')s=s*10+ch-'0',ch=gc();
	return s*w;
}
template<int kcz>
struct ModInt {
#define T (*this)
	int x;
	ModInt() : x(0) {}
	ModInt(int y) : x(y >= 0 ? y : y + kcz) {}
	ModInt(LL y) : x(y >= 0 ? y % kcz : (kcz - (-y) % kcz) % kcz) {}
	inline int inc(const int &v) {
		return v >= kcz ? v - kcz : v;
	}
	inline int dec(const int &v) {
		return v < 0 ? v + kcz : v;
	}
	inline ModInt &operator+=(const ModInt &p) {
		x = inc(x + p.x);
		return T;
	}
	inline ModInt &operator-=(const ModInt &p) {
		x = dec(x - p.x);
		return T;
	}
	inline ModInt &operator*=(const ModInt &p) {
		x = (int)((LL)x * p.x % kcz);
		return T;
	}
	inline ModInt inverse() const {
		int a = x, b = kcz, u = 1, v = 0, t;
		while (b > 0)t = a / b, swap(a -= t * b, b), swap(u -= t * v, v);
		return u;
	}
	inline ModInt &operator/=(const ModInt &p) {
		T *= p.inverse();
		return T;
	}
	inline ModInt operator-() const {
		return -x;
	}
	inline friend ModInt operator+(const ModInt &lhs, const ModInt &rhs) {
		return ModInt(lhs) += rhs;
	}
	inline friend ModInt operator-(const ModInt &lhs, const ModInt &rhs) {
		return ModInt(lhs) -= rhs;
	}
	inline friend ModInt operator*(const ModInt &lhs, const ModInt &rhs) {
		return ModInt(lhs) *= rhs;
	}
	inline friend ModInt operator/(const ModInt &lhs, const ModInt &rhs) {
		return ModInt(lhs) /= rhs;
	}
	inline bool operator==(const ModInt &p) const {
		return x == p.x;
	}
	inline bool operator!=(const ModInt &p) const {
		return x != p.x;
	}
	ModInt qpow(LL n) const {
		ModInt ret(1), mul(x);
		while (n > 0) {
			if (n & 1)ret *= mul;
			mul *= mul, n >>= 1;
		}
		return ret;
	}
	inline friend ostream &operator<<(ostream &os, const ModInt &p) {
		return os << p.x;
	}
	inline friend istream &operator>>(istream &is, ModInt &a) {
		LL t;
		is >> t, a = ModInt<kcz>(t);
		return is;
	}
	static int get_mod() {
		return kcz;
	}
#undef T
};
using Z = ModInt<998244353>;
const int N=5e3+10;
Z f[N][N],pwa[N],pwb[N],g[N];
inline void solve(){
	int n,q;
	Z x,y;
	while(scanf("%d%d%d%d",&n,&x,&y,&q)==4){
		int A=0,B=0;
		vector<Pair> que;
		for(int i=1;i<=q;i++){
			int a=read(),b=read();
			que.emplace_back(a,b),A=max(A,a),B=max(B,b);
		}
		if(x==y){
			g[0]=x.qpow(n)*(n+1);
			for(int i=1;i<=A+B;i++)g[i]=g[i-1]/x*(n+1-i)/(i+1);
			for(auto [a,b]:que){
				printf("%d\n",g[a+b]);
			}
			continue;
		}
		Z inv=(y-x).inverse();
		f[0][0]=(y.qpow(n+1)-x.qpow(n+1))*inv;
		Z C=1;
		for(int i=1;i<=A;i++){
			C*=(n+2-i),C/=i;
			f[i][0]=-C*(x.qpow(n+1-i));
			f[i][0]+=f[i-1][0];
			f[i][0]*=inv;
		}
		C=1;
		for(int i=1;i<=B;i++){
			C*=(n+2-i),C/=i;
			f[0][i]=C*(y.qpow(n+1-i));
			f[0][i]-=f[0][i-1];
			f[0][i]*=inv;
		}
		for(int i=1;i<=A;i++){
			for(int j=1;j<=B;j++){
				f[i][j]=(f[i-1][j]-f[i][j-1])*inv;
			}
		}
		for(auto [a,b]:que){
			printf("%d\n",f[a][b]);
		}
	}
}
int main(){
	int T=1;
	while(T--)solve();
	return 0;
}

详细

Test #1:

score: 100
Accepted
time: 15ms
memory: 101920kb

input:

3 1 2 2
1 1
1 2
100 2 3 1
1 1

output:

6
1
866021789

result:

ok 3 lines

Test #2:

score: -100
Wrong Answer
time: 28ms
memory: 101780kb

input:

1000000000 0 1 1
1000 1000
2 0 0 1
1 1
2 998244352 998244352 1
1 1

output:

381781645
0
1

result:

wrong answer 2nd lines differ - expected: '1', found: '0'