codeforces#764补题


A. Plus One on the Subset

题意:给出 n n n个数,每次可以任选若干个数使其加一,问至少经过多少次操作后各个数相等

找到最大值和最小值相减就可以

#include<iostream>
#include<cmath>
using namespace std;
int main(){
    int t;
    cin>>t;
    while(t -- ){
        int maxx = -1;
        int minn = 1e9;
        int n;
        cin>>n;
        while(n -- ){
            int x;
            cin>>x;
            maxx = max(maxx,x);
            minn = min(minn,x);
        }
        cout<<maxx - minn<<"\n";
    }
}

B.Make AP

题意:给一个三元组,问是否能找到一个正整数乘以其中的某个数令得到的三元组变为等差数列

枚举三种情况即可

#include<iostream>
#include<cmath>
using namespace std;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int t;
    cin>>t;
    while(t -- ){
        int a,b,c;
        cin>>a>>b>>c;
        if(b - a == c - b) cout<<"YES\n";
        else if((a + c) % 2 == 0 && (a + c) / 2 % b == 0 && (a + c) / 2 / b > 0) cout<<"YES\n";
        else if(((b - a) + b) % c == 0 && ((b - a) + b) / c > 0) cout<<"YES\n";
        else if((b - (c - b)) % a == 0 && (b - (c - b)) / a > 0) cout<<"YES\n";
        else cout<<"NO\n";
    }
}

C. Division by Two and Permutation

题意:给出 n n n个数,每次可以将其中某个数 x x x变为 ⌊ x / 2 ⌋ \lfloor x /2\rfloor x/2,问是否能够组成一个 n n n的全排列

贪心,先将每个数变为 n n n以内的数后,由高到低将某个数(出现次数大于1)变为其他没有出现过的数

#include<iostream>
#include<cmath>
#include<algorithm>
#include<vector>
#include<cstring>
#define int long long
using namespace std;
const int N = 55;
int a[N];
vector<int> v;
int cnt[N];
bool cmp(int x,int y){
    return x > y;
}
signed main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int t;
    cin>>t;
    while(t -- ){
        v.clear();
        for(int i = 0;i < 55;i ++ ){
            a[i] = 0;
            cnt[i] = 0;
        }
        int n;
        cin>>n;
        for(int i = 1;i <= n;i ++ ){
            cin>>a[i];
            while(a[i] > n){
                a[i] /= 2;
            }
            cnt[a[i]] ++;
            v.push_back(a[i]);
        }
        sort(v.begin(),v.end(),cmp);
        for(int i = 0;i < v.size();i ++ ){
            if(cnt[v[i]] > 1){
                int t = v[i];
                while(v[i] && cnt[v[i]]){
                    v[i] /= 2;
                }
                if(v[i]){
                    cnt[t] --;
                    cnt[v[i]] ++;
                }
            }
        }
        bool flag = false;
        for(int i = 1;i <= n && !flag;i ++ ){
            if(!cnt[i]){
                flag = true;
                //cout<<i<<"\n";
            }
        }
        if(flag) cout<<"NO\n";
        else cout<<"YES\n";
    }
}

D. Palindromes Coloring

题意:给出一个字符串和颜色数 k k k,每种颜色必须至少给一个字符染色,且被染色的字符串是回文串,使最短的回文串的长度尽可能长

统计一下各个字符出现的 对 数 对数 ,每对字符都可以拿出来作为回文串
然后统计一下单个出现的字符数是否大于 k k k,如果不大于的话,将这些字符插入到剩余的字符即可,否则,最短的字符串的长度就要加1,(中心位置插入了单个字符)

#include<bits/stdc++.h>
using namespace std;
const int  N = 30;
int cnt[N];
int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	int t;
	cin >> t;
	while (t--) {
		memset(cnt, 0, sizeof cnt);
		int ans = 0;
		string str;
		int n, k;
		cin >> n >> k >> str;
		int te = str.size();
		for (int i = 0;i < te;i++) {
			cnt[str[i] - 'a'] ++;
		}
		for (int i = 0;i < 26;i++) {
			ans += cnt[i] / 2;
		}
		ans /= k;
		ans *= 2;
		if (n - k * ans >= k) ans++;
		cout << ans << "\n";
	}
}

E. Masha-forgetful

题意没看懂(挠头.jpg)

F. Interacdive Problem

题意:让你猜一个数 x ( 1 ≤ x < n ) x(1 \leq x <n) x(1x<n) 每次可以询问一个数 y y y,返回 ⌊ ( x + y ) / n ⌋ \lfloor (x + y) / n \rfloor (x+y)/n的值,询问后 x x x的值会加上 y y y

二分

#include<iostream>
using namespace std;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin>>n;
    //getchar();
    bool flag = false;
    int i = 0;
    //int tt = n;
    int l = 1;
    int r = n - 1;
    int mid;
    int t = 0;
    while(l < r){
        mid = (l + r + 1) / 2;
        
        int ans = (n - mid + n - t % n) % n;
        cout<<"+ "<<ans<<endl;
        t += ans;
        //te += n / 2;
        int x;
        cin>>x;
        //getchar();
        if(x == i){
            r= mid - 1;
            //++ i;
        }
        else{
            l = mid;
        }
        i = x;
    }
    cout<<"! "<<r + t<<endl;
}

G. MinOr Tree

题意:给你一个带权无向图,询问这个图的生成树边权按位或后的最小值
从高位向低位考虑,先是否能生成子树,如果不可以的话,说明需要考虑该位为1的边权,最终答案也要或上该位

#include<bits/stdc++.h>
using namespace std;
void solve() {
	int n, m;
	cin >> n >> m;
	vector<int> u(m + 1), v(m + 1), w(m + 1);
	for (int i = 0;i < m;i++) {
		cin >> u[i] >> v[i] >> w[i];
	}
	long long ans = 0;
	for (int i = 29;i >= 0;i--) {
		vector<vector<int>> ve(n + 1);
		for (int j = 0;j < m;j ++) {
			if (w[j] < (1 << i)) {
				ve[v[j]].push_back(u[j]);
				ve[u[j]].push_back(v[j]);
			}
		}
		vector<bool> vis(n + 1);
		vis[1] = 1;
		queue < int> q;
		q.push(1);
		while (q.size()) {
			int x = q.front();
			q.pop();
			for (auto tt : ve[x]) {
				if (!vis[tt]) {
					q.push(tt);
					vis[tt] = true;
				}
			}
		}
		vector<bool> flag(n + 1, 1);
		flag[0] = 0;
		if (flag != vis) {
			ans |= 1 << i;
			for (int j = 0;j < m;j++) {
				if ((w[j] >> i) & 1) {
					w[j] ^= 1 << i;
				}
			}
		}
	}
	cout << ans << "\n";
}
int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	int t;
	cin >> t;
	while (t--) {
		solve();
	}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值