QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#214146#5. 在线 O(1) 逆元ucup-team12090 0ms0kbC++20807b2023-10-14 17:31:492023-10-14 17:31:50

Judging History

你现在查看的是测评时间为 2023-10-14 17:31:50 的历史记录

  • [2024-11-05 21:53:47]
  • 管理员手动重测本题所有提交记录
  • 测评结果:0
  • 用时:0ms
  • 内存:0kb
  • [2023-10-14 17:31:50]
  • 评测
  • 测评结果:0
  • 用时:0ms
  • 内存:0kb
  • [2023-10-14 17:31:49]
  • 提交

answer

#include<bits/stdc++.h>
#include"inv.h"
using std::cin;
using std::cout;
const int mod = 998244353;
const int mod2 = 974849; 
const int w = sqrt(mod2);
const int limit = 3 * (w + 1) * 1024;
int djq[limit], arr[mod2];
using u64 = unsigned long long;
int inv(int x) {
	const int p = (u64) x * arr[x >> 10] % mod;
	return (u64) arr[x >> 10] * djq[p] % mod;
}
void init(int) {
	for(int i = w;i >= 1;--i) {
		std::function<int(int)> getinv = [&](int x) {
			return x == 1 ? 1 : mod2 - u64(mod2 / x) * getinv(mod2 % x) % mod2;
		};
		int inv = getinv(i);
		for(int j = 1;j <= w;++j) {
			arr[(u64) j * inv % mod2] = i;
			arr[mod2 - (u64) j * inv % mod2] = i;
		}
	}
	arr[0] = 1;
	djq[1] = 1;
	for(int i = 2;i < limit;++i) {
		djq[i] = mod - u64(mod / i) * djq[mod % i] % mod;
	}
}

详细

Test #1:

score: 0
Runtime Error

Test #2:

score: 0
Runtime Error

Test #3:

score: 0
Runtime Error