高精度预取模+哈希:CCPC2023深圳M

https://vjudge.net/problem/CSG-1249

对于取模操作,我们可以预处理,则三数之和只能是 0 , M , 2 M 0,M,2M 0,M,2M

然后哈希一下即可

cpp 复制代码
#include<bits/stdc++.h>
using namespace std;
#ifdef LOCAL
 #define debug(...) fprintf(stdout, ##__VA_ARGS__)
#else
 #define debug(...) void(0)
#endif
#define int long long
inline int read(){int x=0,f=1;char ch=getchar(); while(ch<'0'||
ch>'9'){if(ch=='-')f=-1;ch=getchar();}while(ch>='0'&&ch<='9'){
x=(x<<1)+(x<<3)+(ch^48);ch=getchar();}return x*f;}
#define Z(x) (x)*(x)
#define pb push_back
#define fi first
#define se second
//srand(time(0));
#define N 510
#define M2 20010
#define mo (int)(1e14+9)
int n, m, i, j, k, T;
int M, K, a[N], b[M2], nxt; 
char s[M2]; 
int ans; 
map<int, int>mp; 

int Mod(int a) {
	return (a%mo+mo)%mo; 
}

int check() {
	int flg=0, j, k; 
	for(int i=1; i<=K; ++i) {
		if(b[i]>=10) flg=1; 
		j=i%K+1; k=b[i]/10; b[i]%=10; b[j]+=k; 
	}
	return flg; 
}

void no9() {
	int flg=0, i; 
	for(i=1; i<=K; ++i) if(b[i]!=9) break; 
	if(i>K) {
		for(i=1; i<=K; ++i) b[i]=0; 
	}
}

signed main()
{
	#ifdef LOCAL
	  freopen("in.txt", "r", stdin);
	  freopen("out.txt", "w", stdout);
	#endif
//	T=read();
//	while(T--) {
//
//	}
	n=read(); K=read(); 
	for(j=1, M=0; j<=K; ++j) M=(M*10+9)%mo; 
	debug("M : %lld\n", M); 
	for(i=1; i<=n; ++i) {
		memset(b, 0, sizeof(b)); 
		scanf("%s", s+1); m=strlen(s+1); 
		reverse(s+1, s+m+1); 
		for(j=1; j<=m; ++j) {
			k=(j-1)%K+1; b[k]+=s[j]-'0';
		}
		while(check()); no9(); 
		for(j=K; j>=1; --j) debug("%lld|", b[j]); 
		for(j=K; j>=1; --j)	a[i]=(a[i]*10+b[j])%mo; 
		debug(" %lld : %lld\n", i, a[i]); 
	}
	for(j=1; j<=n; ++j) {
		mp.clear(); 
		for(i=1; i<=j; ++i) mp[Mod(a[i]+a[j])]++; 
		for(i=j; i<=n; ++i) {
			ans+=mp[Mod(M-a[i])];
			ans+=mp[Mod(2*M-a[i])]; 
			ans+=mp[Mod(0-a[i])]; 
		}
	}
	printf("%lld", ans); 
	return 0;
}
相关推荐
gfdhy4 天前
【c++】哈希算法深度解析:实现、核心作用与工业级应用
c语言·开发语言·c++·算法·密码学·哈希算法·哈希
艾莉丝努力练剑7 天前
【C++:哈希表】从哈希冲突到负载因子:熟悉哈希表的核心机制
开发语言·c++·stl·散列表·哈希表·哈希·映射
艾莉丝努力练剑8 天前
【C++:哈希表封装】用哈希表封装unordered_map和unordered_set
java·c++·stl·哈希算法·散列表·平衡二叉树·哈希
minji...8 天前
算法---模拟/高精度/枚举
数据结构·c++·算法·高精度·模拟·枚举
再卷也是菜12 天前
C++篇(17)哈希拓展学习
c++·哈希
mjhcsp17 天前
C++ 高精度计算:突破数据类型限制的实现与应用
开发语言·c++·算法·高精度
代码AC不AC1 个月前
【C++】哈希表实现 - 链地址法/哈希桶
c++·哈希算法·哈希·哈希桶·链地址法
Qiuner1 个月前
《掰开揉碎讲编程-长篇》重生之哈希表易如放掌
数据结构·算法·leetcode·力扣·哈希算法·哈希·一文读懂
huohaiyu2 个月前
Hashtable,HashMap,ConcurrentHashMap之间的区别
java·开发语言·多线程·哈希
openHiTLS密码开源社区2 个月前
【密码学实战】openHiTLS mac命令行:消息认证码工具
哈希·hmac·消息认证码·cmac·商用密码算法·gmac