摘要:
传送门 简单题 1 #include<bits/stdc++.h> 2 using namespace std; 3 struct node 4 { 5 double dan,weight; 6 }a[1005]; 7 bool cmp(node x,node y) 8 { 9 return x.d 阅读全文
摘要:
传送门 对分母求一下逆元,把除法取模变成乘法取模,逆元介绍看这里 这种方法只适合模为质数的情况 1 #include<bits/stdc++.h> 2 using namespace std; 3 const long long mod=1e9+7; 4 long long quickpow(lon 阅读全文