Codeforces Round 942 (Div. 2)

A. Contest Proposal

暴力模拟

cpp 复制代码
#include<bits/stdc++.h>
#define endl '\n'
#define int long long
using namespace std;
const int N=110;
int b[N];
int n;
void solve() {
	cin>>n;
	deque<int>q;
	for(int i=0;i<n;i++){
		int x;
		cin>>x;
		q.push_back(x);
	}
	for(int i=0;i<n;i++) cin>>b[i];
	int cnt=0;
	while(1){
		bool ok=false;
		for(int i=0;i<n;i++){
			if(q[i]>b[i]){
				q.push_back(b[i]);
				cnt++;
				sort(q.begin(),q.end());
				q.pop_back();
				ok=true;
				break;
			}
		}
		if(!ok) break;
	}
	cout<<cnt<<endl;
}
signed main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	int t=1;
    cin>>t;
	while(t--) {
		solve();
	}
	return 0;

B. Coin Games

博弈

Alice先行

操作:取走一枚正面的硬币,翻转相邻的两个硬币

当某人遇到的局面没有正面则输

如果可以列出所有情况,那就不是问题,耐心慢慢列出所有情况

当U个数为奇数时,Alice赢,否则Bob赢

cpp 复制代码
#include<bits/stdc++.h>
#define endl '\n'
#define int long long
using namespace std;
int n;
string s;
void solve() {
	cin>>n;
	cin>>s;
	int cnt=0;
	for(int i=0;i<n;i++){
		if(s[i]=='U') cnt++;
	}
	if(cnt%2) cout<<"YES"<<endl;
	else cout<<"NO"<<endl;
}
signed main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	int t=1;
    cin>>t;
	while(t--) {
		solve();
	}
	return 0;
}

C. Permutation Counting

尽量平均分

使得n个数的最小值尽量大

假设最终的最小值是x

然后结果就是x+(n-1)*(x-1)

再加上还有大于x的个数

那么如何使得最小值最大呢?可以二分

check x,如果不足x,则补为x,看k是否够

注意二分的范围

cpp 复制代码
#include<bits/stdc++.h>
#define endl '\n'
#define int long long
using namespace std;
const int N=2e5+10;
int a[N];
int n,k;
bool check(int x){
	int res=k;
	for(int i=1;i<=n;i++){
		if(a[i]<x) res-=(x-a[i]);
		if(res<0) return false;
	}
	return true;
}
void solve() {
	cin>>n>>k;
	int sum=0;
	for(int i=1;i<=n;i++) cin>>a[i],sum+=a[i];
	sum+=k;
	int l=1,r=2e12;
	while(l<r){
		int mid=(l+r+1)>>1;
		if(check(mid)) l=mid;
		else r=mid-1;
	}
//	cout<<l<<endl;
	int ans=l+(n-1)*(l-1);
	int cnt=0;
	for(int i=1;i<=n;i++){
		if(a[i]>l) cnt++;
	}
	for(int i=1;i<=n;i++){
		if(a[i]<l) k-=(l-a[i]);
	}
	ans+=cnt;
	ans+=min(n-cnt,k);
	cout<<ans<<endl;
}
signed main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	int t=1;
    cin>>t;
	while(t--) {
		solve();
	}
	return 0;
}

D1. Reverse Card (Easy Version)

首先,a是b的倍数

暴力枚举a,然后枚举a的因数,这样达到2e9了,会超时

需要优化

假设a+b=kb
b
gcd(a,b)=bb
则k
b=k1b b

则k=k1b
a+b=k1
b*b

即a+b是b方的倍数

枚举b,然后a+b最大为n+b,所以a+b要满足是b方的倍数,直接通过整除来确定个数,最后多了0 1的情况,减去

cpp 复制代码
#include<bits/stdc++.h>
#define endl '\n'
#define int long long
using namespace std;
int n,m;
void solve() {
	cin>>n>>m;
	int ans=0;
	for(int i=1;i<=m;i++){
		ans+=(n+i)/(i*i);
	}
	ans--;
	cout<<ans<<endl;
}
signed main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	int t=1;
    cin>>t;
	while(t--) {
		solve();
	}
	return 0;
}
相关推荐
蜀黍@猿3 分钟前
【C++ 基础】从C到C++有哪些变化
c++
Am心若依旧4095 分钟前
[c++11(二)]Lambda表达式和Function包装器及bind函数
开发语言·c++
Yan.love13 分钟前
开发场景中Java 集合的最佳选择
java·数据结构·链表
zh路西法15 分钟前
【C++决策和状态管理】从状态模式,有限状态机,行为树到决策树(一):从电梯出发的状态模式State Pattern
c++·决策树·状态模式
AC使者19 分钟前
#B1630. 数字走向4
算法
冠位观测者23 分钟前
【Leetcode 每日一题】2545. 根据第 K 场考试的分数排序
数据结构·算法·leetcode
轩辰~29 分钟前
网络协议入门
linux·服务器·开发语言·网络·arm开发·c++·网络协议
lxyzcm1 小时前
C++23新特性解析:[[assume]]属性
java·c++·spring boot·c++23
蜀黍@猿1 小时前
C/C++基础错题归纳
c++
古希腊掌管学习的神1 小时前
[搜广推]王树森推荐系统笔记——曝光过滤 & Bloom Filter
算法·推荐算法