2021-12-15 CFS ROUDN 760 水题记录

这里是平时水水比赛的流水账式思路记录,如果有值得研究的题则会另写详细题解。
点这里进入比赛

Problem A - Polycarp and Sums of Subsequences


Problem B - Missing Bigram

有点类似贪心


Problem C - Paint the Array

-题意思路
  需要求gcd,由于数据较小,算出奇数位的gcd和偶数位的gcd后分别去判断下是否满足题意即可。


Problem D - Array and Operations

-题意思路
  一道贪心,优先取大值,排序后花点心思实现代码即可。


Problem E - Singers’ Tour

-题意思路
   实际就是一道解方程的题目,这题对于方程组分析下就能算出答案。当时的一点推算:
在这里插入图片描述


Problem F - Reverse


Problem G - Trader Problem


期末了大概率不往下补了…

参考代码

/*
 * @Author: Retr0.Wu 
 * @Date: 2021-12-15 19:37:01 
 * @Last Modified by:   Retr0.Wu 
 * @Last Modified time: 2021-12-15 19:37:01 
 */
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll gcd(ll a, ll b)
{
    return b ? gcd(b, a % b) : a;
}
void solveA()
{
    int t;
    cin >> t;
    int a[7];
    while (t--)
    {
        for (int i = 0; i < 7; i++)
        {
            cin >> a[i];
        }
        cout << a[0] << " " << a[1] << " ";
        if (a[0] + a[1] == a[2])
        {
            cout << a[3] << endl;
        }
        else
        {
            cout << a[2] << endl;
        }
    }
}

void solveB()
{
    int t;
    cin >> t;
    while (t--)
    {
        int n;
        cin >> n;
        string x[105];
        char c = 'b';
        int flag = -1;
        string ans = "";
        for (int i = 0; i < n - 2; i++)
        {
            cin >> x[i];
            if (i > 0)
            {
                if (c == x[i][0])
                {
                    ans += x[i][1];
                }
                else
                {
                    ans += x[i];
                }
            }
            else
            {
                ans = x[i];
            }
            c = x[i][1];
        }
        if (ans.size() != n)
        {
            ans += "b";
        }
        cout << ans << endl;
    }
}

void solveC()
{
    int t;
    cin >> t;
    while (t--)
    {
        int n;
        cin >> n;
        ll a[105];
        ll g1 = 0;
        ll g2 = 0;
        for (int i = 1; i <= n; i++)
        {
            cin >> a[i];
            if (i & 1)
                g1 = gcd(g1, a[i]);
            else
                g2 = gcd(g2, a[i]);
        }
        int flag = 1;
        for (int i = 2; i <= n; i += 2)
        {
            if (a[i] % g1 == 0)
            {
                flag = 0;
                break;
            }
        }
        if (flag)
        {
            cout << g1 << endl;
            continue;
        }
        flag = 1;
        for (int i = 1; i <= n; i += 2)
        {
            if (a[i] % g2 == 0)
            {
                flag = 0;
                break;
            }
        }
        if (flag)
        {
            cout << g2 << endl;
            continue;
        }
        cout << 0 << endl;
    }
}

void solveD()
{
    int t;
    cin >> t;
    while (t--)
    {
        // perform exactly 𝑘 operations with this array 𝑎 of 𝑛 integers
        int n, k;
        cin >> n >> k;
        int a[105];
        int score = 0;
        for (int i = 1; i <= n; i++)
        {
            cin >> a[i];
        }
        sort(a + 1, a + 1 + n);
        for (int i = 1; i <= n; i++)
        {
            if (i <= n - 2 * k)
            {
                score += a[i];
            }
        }
        vector<int> v;
        int pre = a[n];
        int cnt = 1;
        for (int i = n - 1; i >= n - 2 * k + 1; i--)
        {
            if (pre == a[i])
                cnt++;
            else
            { // 不同
                v.push_back(cnt);
                cnt = 1;
                pre = a[i];
            }
        }
        v.push_back(cnt);
        // 将多出来的重复数量放到cnt
        if (k > 0)
        { // k>0 才需要计算重复的数量
            sort(v.begin(), v.end());
            //cout<<"v[v.size() - 1]="<<v[v.size() - 1]<<" k="<<k<<endl;
            cnt = (v[v.size() - 1] > k) ? 2 * (v[v.size() - 1] - k) : 0;
        }
        else
            cnt = 0;
        //cout<<score<<" "<<cnt/2<<endl;
        cout << cnt / 2 + score << endl;
    }
}

void solveE()
{
    int t;
    cin >> t;
    while (t--)
    {
        int n;
        cin >> n;
        vector<ll> b(n + 1);
        b.push_back(n);
        ll sumB = 0;
        for (int i = 1; i <= n; i++)
        {
            cin >> b[i];
            sumB += b[i];
        }
        vector<ll> a(n + 1);
        if ((2 * sumB) % ((1 + n) * n) != 0) // 保证sumA合法(不是小数)
        {
            cout << "NO" << endl;
            continue;
        }
        ll sumA = (2 * sumB) / ((1 + n) * n); // 全部累加,可由sumB求出sumA

        a[1] = sumA; // 后续loop减去
        int flag = 1;

        for (int i = 2; i <= n; i++)
        {

            a[i] = (sumA - b[i] + b[i - 1]) / n; // 核心推导式子
            a[1] -= a[i];
            if ((sumA - b[i] + b[i - 1]) % n != 0 || a[i] <= 0) // 能整除并且大于0才可作为计算
            {
                flag = 0;
                break;
            }
        }
        if (a[1] <= 0)
            flag = 0; // 这里别忘了判断
        if (flag)
        {
            cout << "YES" << endl
                 << a[1];
            for (int i = 2; i <= n; i++)
            {
                cout << " " << a[i];
            }
            cout << endl;
        }
        else
            cout << "NO" << endl;
    }
}

int main()
{
    solveD();
    return 0;
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值