Codeforces Round #560 Div. 3
题目链接;戳我
于是。。。风浔凌弱菜又去写了一场div.3
总的来说,真的是比较简单.......就是.......不开long long见祖宗
贴上题解——
A
给定一个数,为01串,每次可以翻转一个位置上的数,问最少几步可以使得它模\(10^x\)余\(10^y\)
从后往前贪心即可。
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cmath>
#include<cstring>
#include<vector>
#include<map>
#define MAXN 200010
int n,m1,m2,ans;
int a[MAXN];
using namespace std;
int main()
{
#ifndef ONLINE_JUDGE
freopen("ce.in","r",stdin);
#endif
scanf("%d%d%d",&n,&m1,&m2);
int i,j;
for(i=1;i<=n;i++)
{
scanf("%1d",&a[i]);
}
for(i=n,j=1;i>=1&&j<=m1;i--,j++)
{
if(a[i]==1)
{
if(j!=m2+1) ans++;
}
else
{
if(j==m2+1) ans++;
}
}
cout<<ans<<endl;
return 0;
}
B
第i天要写i道题,一些题单,每天可以选择一个还没有写过的题单来写,上面的题数必须大于等于i,无论一天写完这个题单还是没有这个题单都算做过了,以后不能再用。如果不存在这样一个题单,终止。问最多写几天。
排序,然后遍历一遍即可。
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cmath>
#include<cstring>
#include<vector>
#include<map>
#define MAXN 200010
int n,m1,m2,ans;
int a[MAXN];
using namespace std;
int main()
{
#ifndef ONLINE_JUDGE
freopen("ce.in","r",stdin);
#endif
scanf("%d",&n);
for(int i=1;i<=n;i++) scanf("%d",&a[i]);
sort(&a[1],&a[n+1]);
int k=1;
for(int i=1;i<=n;i++)
{
if(a[i]<k) continue;
ans++,k++;
}
cout<<ans<<endl;
return 0;
}
C
给你一个字符串,要求删去尽量少的一些字符,使得删完后这个字符串长度为偶数+每个奇数位和它后面的那个偶数位(如果没有就算了)字符不一样。
考虑如果从前往后删,每次如果i和i+1相同,我们不要其中一个,这样的话不仅这个相同的问题解决了,后面的可能因为整体前移一位也消除了一部分的问题,每次操作的效益明显高一些。
update:原先那个代码FST了......原因是刚开始判断如果合法的话直接输出了,没有判断是否长度为偶数......现在已经更新了AC代码。QAQ
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cmath>
#include<cstring>
#include<vector>
#include<map>
#define MAXN 200010
int n,m1,m2,ans,nn;
char a[MAXN],tmp[MAXN];
using namespace std;
inline bool check()
{
if(nn<=1) return true;
for(int i=1;i<nn;i+=2)
{
if(a[i]==a[i+1]) return false;
}
return true;
}
inline void solve()
{
int cnt=0;
int flag=0;
for(int i=1;i<=nn;i++,flag^=1)
{
if(i!=nn&&flag==0)
{
if(a[i]==a[i+1])
{
ans++;
flag^=1;
continue;
}
}
tmp[++cnt]=a[i];
}
nn=cnt;
for(int i=1;i<=nn;i++) a[i]=tmp[i];
// printf("nn=%d\n",nn);
}
int main()
{
#ifndef ONLINE_JUDGE
freopen("ce.in","r",stdin);
#endif
scanf("%d",&n);
scanf("%s",a+1);
nn=n;
if(check()&&nn%2==0)
{
cout<<0<<endl;
for(int i=1;i<=n;i++) cout<<a[i];
cout<<endl;
return 0;
}
while(check()==false)
{
solve();
}
if(nn&1) ans++,nn--;
cout<<ans<<endl;
for(int i=1;i<=nn;i++) cout<<a[i];
cout<<endl;
return 0;
}
D
给定一些数,这些数是x的除了1和x的所有约数。求最小的x。如果没有一个合法的x,输出-1。
显然如果数据合法,这些约数里面最小的乘最大的就是这个x,因为最小的那个肯定是x的最小素因子,而最大的那个是x/最小素因子。
计算一下x的约数个数(因为n一共不超过300,所以如果约数个数超过300就不存在这个合法x了,直接终止就行),看看是否和n+2一样
再遍历一遍看看每个数是不是x的约数就行了.......
嘤嘤嘤 忘乘1LL死的好惨
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cmath>
#include<cstring>
#include<vector>
#include<map>
#define MAXN 200010
int n,m1,m2,ans,nn,t;
int a[MAXN];
using namespace std;
inline int calc(long long x)
{
int cur_ans=0;
for(int i=2;1ll*i*i<=x;i++)
{
if(x%i==0) cur_ans+=2;
if(1ll*i*i==x) cur_ans--;
if(cur_ans>n) return 0x3f3f3f3f;
}
return cur_ans;
}
inline bool check(long long x)
{
for(int i=1;i<=n;i++)
if(x%a[i])
return false;
return true;
}
int main()
{
#ifndef ONLINE_JUDGE
freopen("ce.in","r",stdin);
#endif
scanf("%d",&t);
while(t--)
{
scanf("%d",&n);
for(int i=1;i<=n;i++) scanf("%d",&a[i]);
sort(&a[1],&a[n+1]);
long long now=1ll*a[1]*a[n];
int sum=calc(now);
if(n!=sum||check(now)==false) printf("-1\n");
else printf("%lld\n",now);
}
return 0;
}
E
给定序列A,B。可以对B重排,使得\(\sum_{1\le l \le r \le n}\sum_{l\le i \le r}a_ib_i\)最小
啊。。。对每个a的位置加权上它的覆盖次数,然后排个序。a最小乘b最大即可。
覆盖次数就是\(i*(n-i+1)\)。
嘤嘤嘤 忘开long long死的好惨
#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
#include<cmath>
#define MAXN 200010
#define mod 998244353
using namespace std;
int n;
int b[MAXN];
long long ans=0;
struct Node{long long cnt;int sum;}a[MAXN];
inline bool cmp(struct Node x,struct Node y)
{
if(1ll*x.sum*x.cnt>1ll*y.sum*y.cnt) return 1;
else return 0;
}
int main()
{
#ifndef ONLINE_JUDGE
freopen("ce.in","r",stdin);
#endif
scanf("%d",&n);
for(int i=1;i<=n;i++) scanf("%d",&a[i].sum),a[i].cnt=1ll*i*(n-i+1);
// for(int i=1;i<=n;i++) printf("%d\n",a[i].cnt);
for(int i=1;i<=n;i++) scanf("%d",&b[i]);
sort(&a[1],&a[n+1],cmp);
sort(&b[1],&b[n+1]);
for(int i=1;i<=n;i++)
ans=(ans+1ll*a[i].sum*a[i].cnt%mod*b[i]%mod)%mod;
cout<<ans<<endl;
return 0;
}
F1&&F2
n个物品 m次打折活动 一次打折活动(di,ti)表示物品ti在第di天打折,打折的话需要1元购买,不打折的话2元。
给定每种物品需要买的数量。每一天都会多一块钱,问最短多少天买够需要的所有东西。
(每次购买只要有钱 不限制数量 不限制种类)
显然对于一个物品,在后面选比在前面选优。二分选择的天数+贪心即可。
#include<iostream>
#include<cmath>
#include<cstring>
#include<algorithm>
#include<cstdio>
#include<vector>
#define MAXN 400010
using namespace std;
int n,m,tot;
int need[MAXN],tmp[MAXN],last[MAXN];
vector<int>vec[MAXN];
inline bool check(int x)
{
memset(last,0,sizeof(last));
memcpy(tmp,need,sizeof(need));
for(int i=1;i<=x;i++)
{
for(int j=0;j<vec[i].size();j++)
{
int now=vec[i][j];
last[now]=i;
}
}
int money=0,cur_ans=0;
for(int i=1;i<=x;i++)
{
money++;
for(int j=0;j<vec[i].size();j++)
{
int now=vec[i][j];
while(last[now]==i&&money&&tmp[now])
tmp[now]--,cur_ans++,money--;
}
}
cur_ans+=money/2;
if(cur_ans>=tot) return true;
else return false;
}
int main()
{
#ifndef ONLINE_JUDGE
freopen("ce.in","r",stdin);
#endif
scanf("%d%d",&n,&m);
int l=0,r=0,ans;
for(int i=1;i<=n;i++) scanf("%d",&need[i]),tot+=need[i];
for(int i=1;i<=m;i++)
{
int x,y;
scanf("%d%d",&x,&y);
vec[x].push_back(y);
}
r=tot*2;
while(l<=r)
{
int mid=(l+r)>>1;
if(check(mid)) ans=mid,r=mid-1;
else l=mid+1;
}
printf("%d\n",ans);
return 0;
}
大括号换行!正义!!
同义句压行!正义!!
Codeforces Round #560 Div. 3的更多相关文章
- Codeforces Round #560 (Div. 3) Microtransactions
Codeforces Round #560 (Div. 3) F2. Microtransactions (hard version) 题意: 现在有一个人他每天早上获得1块钱,现在有\(n\)种商品 ...
- A. Remainder Codeforces Round #560 (Div. 3)
A. Remainder Codeforces Round #560 (Div. 3) You are given a huge decimal number consisting of nn dig ...
- Codeforces Round #560 (Div. 3)A-E
A. Remainder output standard output You are given a huge decimal number consisting of nn digits. It ...
- Codeforces Round #366 (Div. 2) ABC
Codeforces Round #366 (Div. 2) A I hate that I love that I hate it水题 #I hate that I love that I hate ...
- Codeforces Round #354 (Div. 2) ABCD
Codeforces Round #354 (Div. 2) Problems # Name A Nicholas and Permutation standard input/out ...
- Codeforces Round #368 (Div. 2)
直达–>Codeforces Round #368 (Div. 2) A Brain’s Photos 给你一个NxM的矩阵,一个字母代表一种颜色,如果有”C”,”M”,”Y”三种中任意一种就输 ...
- cf之路,1,Codeforces Round #345 (Div. 2)
cf之路,1,Codeforces Round #345 (Div. 2) ps:昨天第一次参加cf比赛,比赛之前为了熟悉下cf比赛题目的难度.所以做了round#345连试试水的深浅..... ...
- Codeforces Round #279 (Div. 2) ABCDE
Codeforces Round #279 (Div. 2) 做得我都变绿了! Problems # Name A Team Olympiad standard input/outpu ...
- Codeforces Round #262 (Div. 2) 1003
Codeforces Round #262 (Div. 2) 1003 C. Present time limit per test 2 seconds memory limit per test 2 ...
随机推荐
- Eclipse 新建.jsp页面后,页面头部标签报错的解决方法
Eclipse 新建.jsp页面后,页面头部标签报错的解决方法 1.报错地方: 2.解决方法: .jsp页面右键==>BUild Path ==>Configure Build Path. ...
- python基础之 线程_进程关系
上图
- 最长上升子序列(Longest increasing subsequence)
问题描述 对于一串数A={a1a2a3…an},它的子序列为S={s1s2s3…sn},满足{s1<s2<s3<…<sm}.求A的最长子序列的长度. 动态规划法 ...
- redis 学习(1)-- redis 安装与启动
redis 学习(1)-- redis 安装与启动 redis 特性 关于 redis 的介绍网上已经有很多信息了,这里我就不在详细说明了.介绍一下几个鲜明特性: 1.速度快 官方称可以达到10W的q ...
- 剑指offer-和为S的两个数字-知识迁移能力-python
题目描述 输入一个递增排序的数组和一个数字S,在数组中查找两个数,使得他们的和正好是S,如果有多对数字的和等于S,输出两个数的乘积最小的. 输出描述: 对应每个测试案例,输出两个数,小的先输出. 思路 ...
- 深入理解hive基础学习
Hive 是什么? 1.Hive 是基于 Hadoop处理结构化数据的一个数据仓库工具,可以将结构化的数据文件映射为一张数据库表,并提供类 SQL 查询功能. 2.Hive 利用 HDFS 存储数据 ...
- nginx入门,安装
Nginx是一款轻量级的Web 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,并在一个BSD-like 协议下发行.其特点是占有内存少,并发能力强,事实上nginx的并发能力确实在 ...
- python 运算符与流程控制
运算符与流程控制 运算符 赋值运算 用'='表示,'='的左边只能是变量 算术运算 +.-.*:加.减.乘 /:除法运算,运算结果为浮点数 //:除法运算,运算结果为整数(商) %:求余 **:求幂 ...
- Mybatis实际练习
1.mybatis在xml文件中处理大于号小于号的方法 第一种方法: 用了转义字符把>和<替换掉,然后就没有问题了. SELECT * FROM test WHERE 1 = 1 AND ...
- 2019-11-29-Roslyn-通过-NuGet-库修改应用程序入口函数
title author date CreateTime categories Roslyn 通过 NuGet 库修改应用程序入口函数 lindexi 2019-11-29 08:37:49 +080 ...