Codeforces Round #324 (Div. 2) A B C D E
A,水题不多说。
#include<bits/stdc++.h>
using namespace std; //#define LOCAL
int main()
{
#ifdef LOCAL
freopen("in.txt","r",stdin);
#endif
int n,t; scanf("%d%d",&n,&t);
if(t<){
for(int i = n; i--;) putchar(''+t);
}else{
if(n == ) puts("-1");
else{
putchar('');
for(int i = n; --i;) putchar('');
}
}
return ;
}
A
B,用补集算一下。
#include<bits/stdc++.h>
using namespace std; const int mod = 1e9+;
typedef long long ll;
int qpow(int a,int q)
{
int re = ;
while(q){
if(q&) re = (ll)re*a%mod;
a = (ll)a*a%mod;
q >>= ;
}
return re;
} //#define LOCAL
int main()
{
#ifdef LOCAL
freopen("in.txt","r",stdin);
#endif
int n; scanf("%d",&n);
int ans = (qpow(,n)-qpow(,n)+mod)%mod;
printf("%d",ans);
return ;
}
B
C,当s1[i] != s2[i]的时候至少其中f值+1,效果记为10,01,11(与s1[i]和s2[i]都不同)
s1[i] == s2[i]的时候效果记为11 00。
记s[i] != s[i]有ct1个,为了保证两个f相等如果ct是奇数,单出来那个只有使得f1,f2同时加1,所以下界为low = (ct+1)/2。
其中有ct/2个对10,01 。当t<low的时候无解。
记s1[i]==s2[i]有ct2 = n-ct1个,当t>=low && t <= low+ct2的时候,只要在s1[i]==s2[i]时取相应个数个的ch,ch !=s1[i]。(11)
当t>=low+ct2的时候,需要从ct/2对中选出一些来变成 11,11
#include<bits/stdc++.h>
using namespace std; const int LEN = 1e5+;
char s[][LEN]; //#define LOCAL
int main()
{
#ifdef LOCAL
freopen("in.txt","r",stdin);
#endif
int n,t; scanf("%d%d\n",&n,&t);
gets(s[]); gets(s[]);
int ct1 = ;
for(int i = ; i < n; i++){
ct1 += s[][i] == s[][i];
}
int ct2 = n-ct1;
int low = (ct2+)/;
if(t < low){
puts("-1");
}else {
int pir = low - (ct2&);
int del = t - low - ct1;
int swc = , ct, ex;
if(del > ) {
ex = ct1;
ct = (pir - del)*;
}else {
ct = (pir)*;
ex = t - low;
}
for(int i = ; i < n; i++){
if(s[][i] != s[][i]){
if(ct){ //控制 01
ct--;
putchar(s[swc ^= ][i]);
}else {
for(char c = 'a'; c <= 'z'; c++){
if(c != s[][i] && c != s[][i]) {
putchar(c); break;
}
}
}
}else {
if(ex){ //控制11
ex--;
for(char c = 'a'; c <= 'z'; c++){
if(c != s[][i] && c != s[][i]) {
putchar(c); break;
}
}
}else {
putchar(s[][i]);
}
}
}
}
return ;
}
C
D,暴力,有个事实是1e9以内的的素数间隔不超过282,sqrt(N)判断一下就好了。
#include<bits/stdc++.h>
using namespace std; const int maxn = 1e5+;
int Prim[maxn], sz ;
bool vis[maxn];
void seive(int n = maxn-)
{
int m = (int)sqrt(n+0.5);
for(int i = ; i <= m; i++){
if(!vis[i])
for(int j = i*i; j <= n; j += i){
vis[j] = true;
}
}
for(int i = ; i <= n; i++){
if(!vis[i]) Prim[sz++] = i;
}
} bool chkPrime(int x)
{
int m = (int)sqrt(x+0.5);
for(int i = ; Prim[i] <= m; i++){
if(x%Prim[i] == ) return false;
}
return true;
} //#define LOCAL
int main()
{
#ifdef LOCAL
freopen("in.txt","r",stdin);
#endif
seive();
int n; scanf("%d",&n);
if(chkPrime(n)){
puts("");
printf("%d",n);
}else if(chkPrime(n-)){
puts("");
printf("%d %d",,n-);
}else {
puts("");
for(int i = ; ; i += ){
if(chkPrime(n-i)){
printf("%d ",n-i);
n = i;
break;
}
}
for(int i = ; Prim[i] <= n; i++){
if(chkPrime(n-Prim[i])){
printf("%d %d",Prim[i],n-Prim[i]);
break;
}
}
}
return ;
}
D
E,问交换的最小花费。看成一个置换环,最优的交换就是不断消去端点,但是这样不太好写。
一般两个排列问相对关系都可以把其中一个做映射会方便处理。把序列b映射成1...n,把a按照相同规则映射,并记录映射后元素x的位置。
从小的元素枚举,找到它在序列中的位置p[x],小的要往左边走,判断一下左边的元素是不是要往大于p[x]的位置走。如果是就交换。
p[x]的位置前面一定会有一个不小于p[x]的元素。
#include<bits/stdc++.h>
using namespace std; const int maxn = ;
int mp[maxn];
int a[maxn],p[maxn]; #define PB push_back
#define MP make_pair
#define fi first
#define se second //#define LOCAL
int main()
{
#ifdef LOCAL
freopen("in.txt","r",stdin);
#endif
int n; scanf("%d",&n);
for(int i = ; i <= n; i++){
scanf("%d",a+i);
}
for(int i = ; i <= n; i++){
int x; scanf("%d",&x);
mp[x] = i;
}
for(int i = ; i <= n; i++){
p[ a[i] = mp[a[i]] ] = i;
} int c = ;
for(int x = ; x <= n; x++){
for(int j = p[x]; --j>=x ; ){
if(a[j] >= p[x]){
c += p[x] - j;
swap(a[j],a[p[x]]);
ans.PB(MP(j,p[x]));
p[a[j]] = p[x];
p[x] = j;
}
}
} printf("%d\n",c);
printf("%d\n",(int)ans.size());
for(auto i: ans){
printf("%d %d\n",i.fi,i.se);
}
return ;
}
E
Codeforces Round #324 (Div. 2) A B C D E的更多相关文章
- Codeforces Round #324 (Div. 2)解题报告
---恢复内容开始--- Codeforces Round #324 (Div. 2) Problem A 题目大意:给二个数n.t,求一个n位数能够被t整除,存在多组解时输出任意一组,不存在时输出“ ...
- Codeforces Round #324 (Div. 2) C (二分)
题目链接:http://codeforces.com/contest/734/problem/C 题意: 玩一个游戏,一开始升一级需要t秒时间,现在有a, b两种魔法,两种魔法分别有m1, m2种效果 ...
- Codeforces Round #324 (Div. 2) E. Anton and Ira 贪心
E. Anton and Ira Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/584/probl ...
- Codeforces Round #324 (Div. 2) D. Dima and Lisa 哥德巴赫猜想
D. Dima and Lisa Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/584/probl ...
- Codeforces Round #324 (Div. 2) C. Marina and Vasya 贪心
C. Marina and Vasya Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/584/pr ...
- Codeforces Round #324 (Div. 2) B. Kolya and Tanya 快速幂
B. Kolya and Tanya Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/584/pro ...
- Codeforces Round #324 (Div. 2) A. Olesya and Rodion 水题
A. Olesya and Rodion Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/584/p ...
- Codeforces Round #324 (Div. 2) (哥德巴赫猜想)
题目:http://codeforces.com/problemset/problem/584/D 思路: 关于偶数的哥德巴赫猜想:任一大于2的偶数都可写成两个素数之和. 关于奇数的哥德巴赫猜想:任一 ...
- Codeforces Round #324 (Div. 2) Dima and Lisa 哥德巴赫猜想
原题链接:http://codeforces.com/contest/584/problem/D 题意: 给你一个奇数,让你寻找三个以内素数,使得和为这个奇数. 题解: 这题嘛...瞎比搞搞就好,首先 ...
- Codeforces Round #324 (Div. 2) Marina and Vasya 乱搞推理
原题链接:http://codeforces.com/contest/584/problem/C 题意: 定义$f(s1,s2)$为$s1,s2$不同的字母的个数.现在让你构造一个串$s3$,使得$f ...
随机推荐
- Codeforces - 1181B - Split a Number - 贪心
https://codeforces.com/contest/1181/problem/B 从中间拆开然后用大数搞一波. 当时没想清楚奇偶是怎么弄,其实都可以,奇数长度字符串的中心就在len/2,偶数 ...
- nginx 安装遇到的问题
今天想学学 nginx,于是先把它安装起来.按照 http://nginx.org/en/linux_packages.html 上面的方法,在我的 ubuntu 虚拟机上很容易地就安装好了.可是要运 ...
- Java 异常处理基本规则,Java异常处理的基本规范
看了团队中原来代码中的异常处理,心碎了一地,稍微对照阿里巴巴的异常处理规范整理了一遍,准备分享一下,Java的异常处理规范&约束. 一.运行异常的扑捉 不要捕获 Java 类库中定义的继承自 ...
- 毕马威&阿里:通向智能制造的转型之路
文章发布于公号[数智物语] (ID:decision_engine),关注公号不错过每一篇干货. 2019 年 4 月 17 日,毕马威与阿里研究院携手举办了智能经济主题报告发布会,从技术.制造.组织 ...
- STP-17-对抗单向链路问题
单向链路问题是指链路上的两条传输路径中,有一条出现了问题,但并不是两条同时出现问题.这可能是因为线缆错误.切断了一条光纤线缆.拔掉了一根管线.GBIC问题,或其他问题.因为STP会监控入向BPDU,以 ...
- 原生JS实现日历
这周写自己的项目发现又用到日历了,加之自己毕业之后的第一个工作中遇到的任务也是需要写个日历(组员写了,我就不用写了) 今天就来好好折腾一下日历是怎么写的. 首先,我们看看 windows 的日历.发现 ...
- htmlunit最具有参考意义项目
### HtmlUnit What? - 项目1 https://gitee.com/dgwcode/spiderTmallTradeInfo - 项目2 https://gitee.com/dgwc ...
- angular双向绑定与单向绑定的写法区别
[ngModel]="manualCode" (ngModelChange)="manualCode=$event;" 等价于下面这样的写法: [(ngMode ...
- vue——做了一个幼稚的小页面
我的小花花没有转起来,不开心  ̄へ ̄
- (转)在CentOS中修改中文字符集
虽然在实际工作环境下,Linux中不建议使用中文,但是如果一定要进行中文显示,尤其对于刚接触linux且英语基础不太好的人来说,那么本文具有一定的参考价值. 本文介绍在linux的shell环境下优化 ...