CodeChef--SEPT14小结
这套题目只做了几个相对简单的。其他的做起来比较吃力。
A 找下规律
/*************************************************************************
> File Name: A.cpp
> Author: Stomach_ache
> Mail: sudaweitong@gmail.com
> Created Time: 2014年09月06日 星期六 16时32分54秒
> Propose:
************************************************************************/ #include <cmath>
#include <string>
#include <cstdio>
#include <fstream>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
/*Let's fight!!!*/ const int MOD = 1e9 + ;
typedef long long LL;
int t, n;
char s[]; int main(void) {
ios::sync_with_stdio(false);
cin >> t;
while (t--) {
cin >> s;
n = strlen(s);
LL res = ;
for (int i = ; i < n; i++) {
if ((i + ) % == ) res = (res * ) % MOD;
else res = (res * - ) % MOD;
if (s[i] == 'r') res = (res + ) % MOD;
}
cout << res << endl;
}
return ;
}
B 模拟
n, m = map(int, raw_input().split());
a = map(int, raw_input().split());
now = 1;
while m:
m -= 1;
Q = raw_input().split();
if Q[0] == 'R':
print a[(now + int(Q[1]) - 1) % n - 1]
elif Q[0] == 'C':
now = (now + int(Q[1])) % n;
else :
now = (now - int(Q[1]) + n) % n;
这题被我写烦了。。。是想烦了。
我是枚举中间一堆的个数。然后就是组合数学了。。。。。。。
/*************************************************************************
> File Name: C.cpp
> Author: Stomach_ache
> Mail: sudaweitong@gmail.com
> Created Time: 2014年09月06日 星期六 11时08分09秒
> Propose:
************************************************************************/ #include <cmath>
#include <string>
#include <cstdio>
#include <fstream>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
/*Let's fight!!!*/ const int MOD = 1e9 + ;
typedef long long LL;
LL fact[], n; LL pow_mod(LL a, LL b) {
LL res = ;
while (b) {
if (b & ) res = (res * a) % MOD;
a = (a * a) % MOD;
b >>= ;
}
return res;
} void init() {
fact[] = ; fact[] = ;
int now = ;
for (int i = ; i <= ; i++, now++) fact[i] = (fact[i - ] * pow_mod(now, MOD - ) % MOD * i) % MOD;
} int main(void) {
ios::sync_with_stdio(false);
init();
while (cin >> n) {
if (n < ) {
cout << "" << endl;
continue;
}
LL res = ;
if (n % == ){
for (int i = ; i <= n - ; i += ) {
res = (res + fact[(n - i)/ - ]) % MOD;
}
} else {
for (int i = ; i <= n - ; i += ) {
res = (res + fact[(n - i)/ - ]) % MOD;
}
}
cout << res << endl;
} return ;
}
D
E
题解上这题也是个Easy..可是当时愣是没有看出来,知道突破点是k比较小。
正解是枚举数列中第一个和最后一个没有改变的位置, 这个不超过k^2,然后。。。
这里getchar_unlocked是getchar()的线程不安全版本。。好像已经被windows弃用。
还有,n*10可以表达为(n<<3) + (n<<1)
/*************************************************************************
> File Name: E.cpp
> Author: Stomach_ache
> Mail: sudaweitong@gmail.com
> Created Time: 2014年09月15日 星期一 21时04分57秒
> Propose:
************************************************************************/ #include <cmath>
#include <string>
#include <cstdio>
#include <fstream>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
/*Let's fight!!!*/ const int MAX_N = ;
typedef long long LL;
#define rep(i, a, b) for (int i = (a); i <= (b); i++)
int n, k, a[MAX_N]; void read(int &res) {
char c = ' ';
res = ;
int sign = ;
while (c < '' || c > '') {if (c == '-') sign = -; c = getchar_unlocked();}
while (c >= '' && c <= '') res = (res<<) + (res<<) + c - '', c= getchar_unlocked();
res *= sign;
} int main(void) {
read(n), read(k);
rep (i, , n) read(a[i]); int a1 = 0x3f3f3f3f, d = 0x3f3f3f3f;
rep (i, , k+) rep (j, n-k+i-, n) {
int cnt = , tmp_d = (a[j] - a[i]) / (j - i), tmp_a1 = a[i] - (i - ) * tmp_d;
rep (t, , n) if (a[t] != tmp_a1 + (t - ) * tmp_d) cnt++;
if (cnt <= k) {
if (a1 > tmp_a1) a1 = tmp_a1, d = tmp_d;
else if (a1 == tmp_a1 && d > tmp_d) d = tmp_d;
}
} rep (i, , n) printf("%d%c", a1 + (i - ) * d, i == n ? '\n' : ' '); return ;
}
/*************************************************************************
> File Name: F.cpp
> Author: Stomach_ache
> Mail: sudaweitong@gmail.com
> Created Time: 2014年09月08日 星期一 13时07分43秒
> Propose:
************************************************************************/
#include <cmath>
#include <string>
#include <cstdio>
#include <vector>
#include <fstream>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
/*Let's fight!!!*/ typedef long long LL;
LL N, M; /*
* (a / b) % c 等价于 (a % (b * c)) / b;
* 适用于bc不大而且b在c的剩余系中逆元不存在的情况
*/
LL sum(LL n) {
LL m = M * ;
n %= m;
return (n * ( * n % m * n % m * n % m * n % m + * n % m * n % m * n % m + * n % m * n % m - + m) % m) % m / ;
} int main(void) {
ios::sync_with_stdio(false);
int T;
cin >> T;
while (T--) {
cin >> N >> M;
if (N == ) {
cout << N % M << endl;
continue;
} else if (N == ) {
cout << (N + ) % M << endl;
continue;
} else if (N == ) {
cout << (N + + ) % M << endl;
continue;
} LL res = , i = , fst = , last = N, j;
while (true) {
LL r = N / (i + ), l = i;
j = N / i;
res = (res + (sum(last) - sum(r) + M) % M * (i % M) % M) % M;
if (r != fst || last != l)
res = (res + (sum(l) - sum(fst) + M) % M * (j % M) % M) % M;
if (l >= r) break;
i++;
last = r;
fst = l;
} cout << res << endl;
} return ;
}
需要维护每个区间内比右短点小的个数和比左端点小的个数,BIT系列。。是个不错的题。
/*************************************************************************
> File Name: E.cpp
> Author: Stomach_ache
> Mail: sudaweitong@gmail.com
> Created Time: 2014年09月08日 星期一 17时18分23秒
> Propose:
************************************************************************/ #include <cmath>
#include <string>
#include <cstdio>
#include <fstream>
#include <vector>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
/*Let's fight!!!*/ #define rep(i, n) for (int i = (1); i <= (n); i++)
#define per(i, n) for (int i = (n); i >= (1); i--)
const int MAX_N = ;
typedef long long LL;
int N, M, w, A[MAX_N], c[MAX_N];
struct node {
int id, l, r, ltr, ltl, eql, eqr;
node () {}
node (int id, int l, int r):id(id), l(l), r(r),ltr(), ltl() {}
friend bool operator < (const node &x, const node &y) {
return x.id < y.id;
}
}Q[MAX_N]; int lowbit(int x) {
return x & -x;
} void add(int x) {
while (x <= w) {
c[x]++;
x += lowbit(x);
}
} int sum(int x) {
int res = ;
while (x > ) {
res += c[x];
x -= lowbit(x);
}
return res;
} int main(void) {
ios::sync_with_stdio(false);
while (cin >> N >> M) {
vector<int> var;
rep (i, N) {
cin >> A[i];
var.push_back(A[i]);
}
sort(var.begin(), var.end());
var.resize(unique(var.begin(), var.end()) - var.begin());
w = var.size(); memset(c, , sizeof(c));
LL res = ;
rep (i, N) {
int pos = lower_bound(var.begin(), var.end(), A[i]) - var.begin() + ;
res += i - - sum(pos - ) - (sum(pos) - sum(pos - ));
add(pos);
} // cerr << res << endl; vector<int> lft[MAX_N], rgt[MAX_N];
int x, y;
rep (i, M) {
cin >> x >> y;
if (x > y) swap(x, y);
Q[i] = node(i, x, y);
lft[x].push_back(i);
rgt[y].push_back(i);
} memset(c, , sizeof(c));
rep (i, N) {
int szl = lft[i].size(), szr = rgt[i].size();
for (int j = ; j < szl; j++) {
int id = lft[i][j];
int pos = lower_bound(var.begin(), var.end(), A[Q[id].r]) - var.begin() + ;
Q[id].eqr = sum(pos) - sum(pos - );
Q[id].ltr = sum(pos - );
} int pos = lower_bound(var.begin(), var.end(), A[i]) - var.begin() + ;
for (int j = ; j < szr; j++) {
int id = rgt[i][j];
Q[id].ltr = sum(pos - ) - Q[id].ltr;
Q[id].eqr = sum(pos) - sum(pos - ) - Q[id].eqr;
}
add(pos);
} memset(c, , sizeof(c));
per (i, N) {
int szl = lft[i].size(), szr = rgt[i].size();
for (int j = ; j < szr; j++) {
int id = rgt[i][j];
int pos = lower_bound(var.begin(), var.end(), A[Q[id].l]) - var.begin() + ;
Q[id].ltl = sum(pos - );
Q[id].eql = sum(pos) - sum(pos - );
}
int pos = lower_bound(var.begin(), var.end(), A[i]) - var.begin() + ;
for (int j = ; j < szl; j++) {
int id = lft[i][j];
Q[id].ltl = sum(pos - ) - Q[id].ltl;
Q[id].eql = sum(pos) - sum(pos - ) - Q[id].eql;
}
add(pos);
}
// cerr << "say hello\n"; sort (Q + , Q + M + );
rep (i, M) {
int l = Q[i].l, r = Q[i].r;
LL tmp = Q[i].ltr - Q[i].ltl - (r - l + - Q[i].ltr - Q[i].eqr) + (r - l + - Q[i].ltl - Q[i].eql);
if (A[r] > A[l]) tmp--;
else if (A[r] < A[l]) tmp++;
cout << res + tmp << endl;
}
} return ;
}
H
I
J
CodeChef--SEPT14小结的更多相关文章
- LTIME16小结(CodeChef)
题目链接 最后一题是Splay...还没有学会..蒟蒻!!! A /****************************************************************** ...
- 从零开始编写自己的C#框架(26)——小结
一直想写个总结,不过实在太忙了,所以一直拖啊拖啊,拖到现在,不过也好,有了这段时间的沉淀,发现自己又有了小小的进步.哈哈...... 原想框架开发的相关开发步骤.文档.代码.功能.部署等都简单的讲过了 ...
- Python自然语言处理工具小结
Python自然语言处理工具小结 作者:白宁超 2016年11月21日21:45:26 目录 [Python NLP]干货!详述Python NLTK下如何使用stanford NLP工具包(1) [ ...
- java单向加密算法小结(2)--MD5哈希算法
上一篇文章整理了Base64算法的相关知识,严格来说,Base64只能算是一种编码方式而非加密算法,这一篇要说的MD5,其实也不算是加密算法,而是一种哈希算法,即将目标文本转化为固定长度,不可逆的字符 ...
- iOS--->微信支付小结
iOS--->微信支付小结 说起支付,除了支付宝支付之外,微信支付也是我们三方支付中最重要的方式之一,承接上面总结的支付宝,接下来把微信支付也总结了一下 ***那么首先还是由公司去创建并申请使用 ...
- iOS 之UITextFiled/UITextView小结
一:编辑被键盘遮挡的问题 参考自:http://blog.csdn.net/windkisshao/article/details/21398521 1.自定方法 ,用于移动视图 -(void)mov ...
- K近邻法(KNN)原理小结
K近邻法(k-nearst neighbors,KNN)是一种很基本的机器学习方法了,在我们平常的生活中也会不自主的应用.比如,我们判断一个人的人品,只需要观察他来往最密切的几个人的人品好坏就可以得出 ...
- scikit-learn随机森林调参小结
在Bagging与随机森林算法原理小结中,我们对随机森林(Random Forest, 以下简称RF)的原理做了总结.本文就从实践的角度对RF做一个总结.重点讲述scikit-learn中RF的调参注 ...
- Bagging与随机森林算法原理小结
在集成学习原理小结中,我们讲到了集成学习有两个流派,一个是boosting派系,它的特点是各个弱学习器之间有依赖关系.另一种是bagging流派,它的特点是各个弱学习器之间没有依赖关系,可以并行拟合. ...
- scikit-learn 梯度提升树(GBDT)调参小结
在梯度提升树(GBDT)原理小结中,我们对GBDT的原理做了总结,本文我们就从scikit-learn里GBDT的类库使用方法作一个总结,主要会关注调参中的一些要点. 1. scikit-learn ...
随机推荐
- CSS3 学习笔记(动画 多媒体查询)
动画 1.@keyframes规则用于创建动画.在@keyframes中规定某项CSS样式,就能创建由当前样式逐渐改为新样式的动画效果 2.使用animation进行动画捆绑.两个值:动画名称.时长 ...
- day09 samba、nginx服务配置
samba 1.环境准备 [root@localhost ~]# iptables -F #清除防火墙配置 [root@localhost ~]# systemctl stop firewalld # ...
- csps-模拟7778lrd两试
题面:https://www.cnblogs.com/Juve/articles/11707775.html 位运算: 大力分类讨论 第一次发现若a^b=c,则c^b=a,c^a=b #include ...
- DRF 序列化组件单增
目录 自定义序列化(矬) Serializer类(方式繁琐) 底层序列化类 UserSerializer 视图序列化步骤 底层反序列化类 UserCreatSerializer 视图反序列化步骤 Mo ...
- ros python
https://www.ncnynl.com/archives/201611/1059.html python的节点需要对节点设置权限为可执行,在.py文件所在的路径执行如下命令 $ touch ta ...
- Linux的CentOS上如何安装nginx
1. 安装nginx前,首先要装好gcc和g++环境: 2. 在centOS上装nginx,需要PCRE.zlib和ssl的支持,出ssl外其他都需要从其官网上下载好,上传至服务器: 3. 接着将上传 ...
- mysql列属性操作(转载)
1.mysql中修改字段长度: ALTER TABLE tb_article MODIFY COLUMN NAME VARCHAR(50); 这里的tb_article为表名,NAME为字段名,50为 ...
- 33 N皇后问题
原题网址:https://www.lintcode.com/zh-cn/old/problem/n-queens/# n皇后问题是将n个皇后放置在n*n的棋盘上,皇后彼此之间不能相互攻击. 给定一个整 ...
- iOS之CATextLayer属性简介
1.CATextLayer简介 CATextLayer快速高效简单地来渲染纯文本.NSAttributedString /* The text layer provides simple text l ...
- codeforces 1195D2-Submarine in the Rybinsk Sea
传送门:QAQQAQ 题意:自己看 思路:就是一个类似于数位DP的东西... 统计a[i]数位分解的数在每一位出现的个数,即分两种讨论: 1.位数小于当前j,则j会出现在q+i,而且计算顺序互换会计算 ...