Codeforces Round #411 (Div. 2) 【ABCDE】
A. Fake NP
题意:给你l,r,让你输出[l,r]里面除1以外的,出现因子数量最多的那个数。
题解:如果l==r输出l,否则都输出2
#include<bits/stdc++.h>
using namespace std;
int main(){
int l,r;
cin>>l>>r;
if(r-l==0){
cout<<l<<endl;
return 0;
}
int ans = 0;
int num = 0;
for(int i=2;i<=10000;i++){
if(r/i-(l-1)/i>num)
num = r/i-(l-1)/i,ans = i;
}
cout<<ans<<endl;
}
B. 3-palindrome
题意:给你n,你需要构造一个长度为n的,不存在长度为3的回文串的串。
题解:aabbaabbaabbaabb这样一直构造下去就好了。
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
for(int i=0;i<n;i++){
if(i%4==0)cout<<"a";
else if(i%4==1)cout<<"a";
else if(i%4==2)cout<<"b";
else if(i%4==3)cout<<"b";
}
cout<<endl;
}
C. Find Amir
题意:从i到j的代价是(i+j)%(n+1),问你经过所有点的最小代价是多少
题解:显然就是(n-1)/2
#include<bits/stdc++.h>
using namespace std;
int main(){
long long ans = 0;
long long n;
cin>>n;
if(n==1){
cout<<"0"<<endl;
return 0;
}
ans = (n/2-1);
if(n%2==1)ans++;
cout<<ans<<endl;
}
D. Minimum number of steps
题意:你的每一次操作,会使得一个ab变成bba,问你最多进行多少次操作
题解:显然最后的答案会变成bbbbbbbaaaaaaa,那么我们倒着看,每次遇到一个b,就会使得b的数量加一,遇到一个a,就会花费当前b的数量,移动到最后,并且使得b的数量翻倍。
#include<bits/stdc++.h>
using namespace std;
const long long mod = 1e9+7;
long long ans = 0;
string s;
int main(){
cin>>s;
reverse(s.begin(),s.end());
long long B = 0;
long long A = 0;
for(int i=0;i<s.size();i++){
if(s[i]=='a'){
ans = (ans + B)%mod;
B = B * 2LL % mod;
}else{
B = (B + 1)% mod;
}
}
cout<<ans<<endl;
}
E. Ice cream coloring
题意:给你一棵树,然后树上的每个点有一堆颜色,保证每个颜色都会组成一个联通块。现在让你输出一个方案,使得出现在同一个点的颜色都各不相同。
题解:如果不给你一棵树这个条件,那么这就是一个np问题。但是他给了,说明这就是个xjb贪心的问题……
首先最大的颜色数量,就是点的最大颜色数量。然后我们贪心的去涂颜色就好了。
但是有个数据:
3 2
1 1
1 2
2 1 2
1 3
2 3
所以我们得按照一定的顺序去涂颜色就行。
(好像这棵树的条件还是没用上。。。
#include<bits/stdc++.h>
using namespace std;
const int maxn = 3e5+7;
int n,m;
vector<int>E[maxn],G[maxn],H[maxn];
int vis[maxn];
int ans[maxn];
map<int,int>H2[maxn];
queue<int>Q;
int tot;
void solve(int i){
for(int j=0;j<E[i].size();j++){
int v = E[i][j];
if(ans[v]!=0)continue;
while(H2[i][tot]==1)tot++;
ans[v]=tot;
H2[i][tot]=1;
for(int k=0;k<H[v].size();k++){
if(H2[H[v][k]][tot]==0){
Q.push(H[v][k]);
}
H2[H[v][k]][tot]=1;
}
}
vis[i]=1;
}
int main(){
scanf("%d%d",&n,&m);
int Ans = 0;
for(int i=1;i<=n;i++){
int p;
scanf("%d",&p);
for(int j=0;j<p;j++){
int x;
scanf("%d",&x);
E[i].push_back(x);
H[x].push_back(i);
}
}
for(int i=1;i<n;i++){
int x,y;
scanf("%d%d",&x,&y);
G[x].push_back(y);
G[y].push_back(x);
}
for(int i=1;i<=n;i++){
tot = 1;
if(vis[i])continue;
solve(i);
while(!Q.empty()){
int now = Q.front();
tot = 1;
Q.pop();
if(vis[now])continue;
solve(now);
}
}
for(int i=1;i<=m;i++)
if(ans[i]==0)
ans[i]=1;
for(int i=1;i<=m;i++)
Ans=max(Ans,ans[i]);
cout<<Ans<<endl;
for(int i=1;i<=m;i++)
cout<<ans[i]<<" ";
cout<<endl;
}
Codeforces Round #411 (Div. 2) 【ABCDE】的更多相关文章
- Codeforces Round #677 (Div. 3)【ABCDE】
比赛链接:https://codeforces.com/contest/1433 A. Boring Apartments 题解 模拟即可. 代码 #include <bits/stdc++.h ...
- Codeforces Round #382 Div. 2【数论】
C. Tennis Championship(递推,斐波那契) 题意:n个人比赛,淘汰制,要求进行比赛双方的胜场数之差小于等于1.问冠军最多能打多少场比赛.题解:因为n太大,感觉是个构造.写写小数据, ...
- Codeforces Round #684 (Div. 2)【ABC1C2】
比赛链接:https://codeforces.com/contest/1440 A. Buy the String 题解 枚举字符串中 \(0\) 或 \(1\) 的个数即可. 代码 #includ ...
- Codeforces Round #682 (Div. 2)【ABCD】
比赛链接:https://codeforces.com/contest/1438 A. Specific Tastes of Andre 题意 构造一个任意连续子数组元素之和为子数组长度倍数的数组. ...
- Codeforces Round #678 (Div. 2)【ABCD】
比赛链接:https://codeforces.com/contest/1436 A. Reorder 题解 模拟一下这个二重循环发现每个位置数最终都只加了一次. 代码 #include <bi ...
- Codeforces Round #676 (Div. 2)【ABCD】
比赛链接:https://codeforces.com/contest/1421 A. XORwice 题意 给出两个正整数 \(a.b\),计算 \((a \oplus x) + (b \oplus ...
- Codeforces Round #675 (Div. 2)【ABCD】
比赛链接:https://codeforces.com/contest/1422 A. Fence 题意 给出三条边 $a,b,c$,构造第四条边使得四者可以围成一个四边形. 题解 $d = max( ...
- Codeforces Round #668 (Div. 2)【ABCD】
比赛链接:https://codeforces.com/contest/1405 A. Permutation Forgery 题意 给出一个大小为 $n$ 的排列 $p$,定义 \begin{equ ...
- Codeforces Round #658 (Div. 2)【ABC2】
做完前四题还有一个半小时... 比赛链接:https://codeforces.com/contest/1382 A. Common Subsequence 题意 给出两个数组,找出二者最短的公共子序 ...
随机推荐
- windows环境变量PATH顺序的重要性
PATH是路径的意思,PATH环境变量中存放的值,就是一连串的路径.不同的路径之间,用英文的分号间隔开.系统在执行用户命令时,若用户未给出绝对路径,则首先在当前目录下寻找相应的可执行文件.批处理文件等 ...
- 【转】assert预处理宏与预处理变量
assert assert是一个预处理宏,由预处理器管理而非编译器管理,所以使用时都不用命名空间声明,如果你写成std::assert反而是错的.使用assert需要包含cassert或assert. ...
- Windows CreateFont:创建自己的字体
原文地址:http://blog.csdn.net/softn/article/details/51718347 前面无论是使用文本输出函数还是 static 控件,字体都是默认的,比较丑陋,我们完全 ...
- phpstudy中apache的默认根目录的配置
默认配置文件是:vhosts.conf. 安装laravel后需要把根目录配置到public. 下面的配置需要在本地计算机的host文件配置域名,一个是“localhost”,一个是“www.goho ...
- 开源监控系统整合Nagios+Cacti+Nconf详解
1.配置好yum源,为了提高效率建议搭建本地yum源 yum install -y http* yum install -y mysql* yum install -y php-* yum in ...
- IOS支持多国语言
- Oracle:SQL语句--对表的操作——修改表名
– 修改表名(未验证在有数据,并且互有主外键时,是否可用) 语法: rename 现表名 to 新表名; 例: rename T_Student2 to T_Stu;
- 前端工程化-webpack(babel编译ES6)
最新版安装与普通安装 使用babel-loader编译ES6,需要遵循规范,安装babel-presets 规范列表 对应babel-loader,babel-preset安装最新版和普通版: pre ...
- Python decorator
1.编写无参数的decorator Python的 decorator 本质上就是一个高阶函数,它接收一个函数作为参数,然后,返回一个新函数. 使用 decorator 用Python提供的 @ 语法 ...
- BBC 记录片planet earth
He'll have to remain on guard for another two weeks, but in the jungle, just surviving the day can c ...