- 博客(3)
- 收藏
- 关注
原创 ECJTU&&JXUST 13级新生友谊赛 题解
A./** 此题由于字符串的长度是10^5,所以利用O(n^2)暴力来做的话, 显然是超时的,所以不采用这种方法,我们可以计算每个字符 出现的次数,而题目中 告诉Pairs (x, y) and (y, x) should be considered different,所以组成的个数总和就是 每个字符出现的次数的乘积之和。*/#include#include#includ
2014-04-13 17:37:13 688 1
原创 ECJTU13级队员欢乐水题赛——题解
A 对于递归写法,显然会TLE,由递归式转化为递推式即可。#include using namespace std;typedef long long ll;const int mod = 10000007;const int maxn = 100000+5;ll f[maxn];int main(){ int T,tc = 0; scanf("%d",&T)
2014-03-09 13:22:14 626
原创 day9
/*此题有3个未知数。随便列3个方程即可求解。*/#include#includeusing namespace std;#define M 100000 + 10int a[4][4];int sum[4];int main(){ for(int i = 1;i < 4;i ++) { for(int j = 1 ;j < 4
2014-01-14 12:28:22 420
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人