首页 > 其他分享 > Codeforces Round #844 (Div. 1 + Div. 2, based on VK Cup 2022 - Elimination Round)[A - D]

Codeforces Round #844 (Div. 1 + Div. 2, based on VK Cup 2022 - Elimination Round)[A - D]

时间:2023-01-29 19:45:28浏览次数:79  
标签:10 844 int ll ans Div d2 Round d1

Codeforces Round #844 (Div. 1 + Div. 2, based on VK Cup 2022 - Elimination Round)[A - D]

A Parallel Projectionstandard input/output1 s, 512 MB
B Going to the Cinemastandard input/output2 s, 512 MB
C Equal Frequenciesstandard input/output2 s, 512 MB
D Many Perfect Squaresstandard input/output4 s, 512 MB

过题记录

When Who Problem Lang Verdict Time Memory
Jan/27/2023 22:09UTC+8 xjsc01# C - Equal Frequencies GNU C++17 Accepted 31 ms 300 KB
Jan/27/2023 22:08UTC+8 xjsc01# C - Equal Frequencies GNU C++17 Wrong answer on test 1 0 ms 100 KB
Jan/27/2023 21:14UTC+8 xjsc01# B - Going to the Cinema GNU C++17 Accepted 62 ms 2400 KB
Jan/27/2023 20:39UTC+8 xjsc01# A - Parallel Projection GNU C++17 Accepted 31 ms 0 KB

A Parallel Projection

image

Example

Input

5
55 20 29
23 10 18 3
20 10 5
1 5 2 5
15 15 4
7 13 10 10
2 1000 2
1 1 1 999
10 4 10
7 1 2 1

Output

47
8
14
1002
17

思路

朝着四个方向枚举

代码

#include <bits/stdc++.h>
using namespace std;
int w, d, h, a, b, f, g;
int dist(int x, int y)
{
    return abs(x - a) + abs(y - b);
}
int main()
{
    int T;
    cin >> T;
    while(T --)
    {
        scanf("%d%d%d", &w, &d, &h);
        scanf("%d%d%d%d", &a, &b, &f, &g);
        int ans = 0x3f3f3f3f;
        int d1 = 0;
        int d2 = 0;
        //
        d1 = f;
        d2 = dist(0, g);
        ans = min(ans, d1 + d2 + h);
        //
        d1 = g;
        d2 = dist(f, 0);
        ans = min(ans, d1 + d2 + h);
        //
        d1 = w - f;
        d2 = dist(w, g);
        ans = min(ans, d1 + d2 + h);
        //
        d1 = d - g;
        d2 = dist(f, d);
        ans = min(ans, d1 + d2 + h);
        printf("%d\n", ans);
    }
    return 0;
}

B Going to the Cinema

image

Example

Input

4
2
1 1
7
0 1 2 3 4 5 6
8
6 0 3 3 6 7 2 7
5
3 0 0 3 3

Output

2
1
3
2

image

思路

首先需要排序。

容易知道,如果有\(x \le y\),如果 y 选中了,那么 x 也一定需要选中。

所以从低位到高位进行选择

代码

#include <bits/stdc++.h>
using namespace std;
int n;
const int N = 2e5 + 20;
int a[N];
struct Node{//预处理,按顺序,i=a[i],num表示有多少个
    int i, num; 
};
Node d[N];
int main()
{
    int T;
    cin >> T;
    while(T --)
    {
        scanf("%d", &n);
        for(int i = 1; i <= n; i++) scanf("%d", a + i);
        sort(a + 1, a + 1 + n);
        d[1] = {a[1], 1};
        int pos = 1;
        for(int i = 2; i <= n; i++){
            if(a[i] == d[pos].i) d[pos].num ++;
            else{
                pos++;
                d[pos].i = a[i];
                d[pos].num = 1;
            }
        }
        int tot = 0;
        int ans = 0;
        for(int i = 1; i <= pos; i++)
        {
            if(tot + d[i].num - 1 >= d[i].i && (i < pos && tot+d[i].num < d[i+1].i || i == pos)) {
                ans ++;
                tot += d[i].num;
            }
            else{
                tot += d[i].num;
            }
        }
        if(d[1].i != 0 ) ans ++;
        //|| ( d[1].num + d[2].num - 1 < d[2].i )
        printf("%d\n", ans);
        // for(int i = 1; i <= pos; i++){
        //     printf("%d  %d\t", d[i].i, d[i].num);
        // }
    }
    return 0;
}

C Equal Frequencies

image

Example

Input

4
5
hello
10
codeforces
5
eevee
6
appall

Output

1
helno
2
codefofced
1
eeeee
0
appall

思路

首先忽略原本的字母,把每一个字母具体出现多少次全部抽取出来,现在枚举得到的结果中有多少种字母(注意种类数必须 整除 字符串长度),计算最小移动次数。

然后求最优结果的方案数

image

代码

#include <bits/stdc++.h>
using namespace std;
int N;
#define N 100020
char s[N];
int a[128];
int b[30];
int len;
pair<int, char> c[128];
int del[128];
vector<char> ins;
int solve(int &min_diff)
{
    int  k;
    int mindiff = 0x3f3f3f3f;
    for(int i = 1; i <= 26; i++){
        if(len % i) continue;
        int num = len / i;
        int diff = 0;
        for(int j = 1; j <= 26; j ++){
            if(j <= i){
                diff += max(num - b[j], 0);
            }
        }
        if(diff < mindiff){
            mindiff = diff;
            k = i;
        }
    }
    min_diff = mindiff;
    return k;
}
int main()
{
    int T;
    cin >> T;
    while(T --)
    {
        scanf("%d", &len);
        scanf("%s", s + 1);
        memset(a, 0, sizeof a);
        memset(c, 0, sizeof c);
        memset(b, 0, sizeof b);
        memset(del, 0, sizeof del);
        ins.clear();
        for(int i = 1; i <= len; i++){
            a[s[i]] ++;
        }
        for(int i = 1; i <= 26; i++){
            b[i] = a[i + 'a' - 1];
        }
        for(int i = 1; i <= 26; i++){
            c[i].first = a[i + 'a' - 1];
            c[i].second = i + 'a' - 1;
        }
        sort(b + 1, b + 1 + 26);
        reverse(b + 1, b + 1 + 26);
        sort(c + 1, c + 1 + 26);
        reverse(c + 1, c + 1 + 26);
        int mindff;
        int k = solve(mindff);
        //for(int i = 1; i <= 26; i ++) cout << b[i] << '\t';
        //cout << k << "\t";
        int num = len / k;
        for(int i = 1; i <= 26; i++){
            int tmp;
            if(i <= k) tmp = num;
            else tmp = 0;
            if(c[i].first == tmp) continue;
            if(c[i].first > tmp){
                del[c[i].second] += c[i].first - tmp;
            }
            else{
                for(int u = 1; u <= tmp - c[i].first; u++) ins.push_back(c[i].second);
            }
        }
        printf("%d\n", mindff);
        for(int i = 1; i <= len; i++){
            if(del[s[i]]){
                putchar(ins.back());
                ins.pop_back();
                del[s[i]]--;
            }
            else{
                putchar(s[i]);
            }
        }
        puts("");
    }
    return 0;
}

D Many Perfect Squares

image

Example

Input

4
5
1 2 3 4 5
5
1 6 13 22 97
1
100
5
2 5 10 17 26

Output

2
5
1
2

Note

In the first test case, for x=0 the set contains two perfect squares: 1 and 4. It is impossible to obtain more than two perfect squares.

In the second test case, for x=3 the set looks like 4,9,16,25,100, that is, all its elements are perfect squares.

思路

在这一道题目中,明显可以使用暴力,但是怎么样暴力是一种艺术。

参考AcWing  ash_heat ,

首先,保底的结果就是有一个数字加 x 之后是完全平方数(把第一个数挪一挪就行了)

如果要是直接枚举 x ,必定超时。

我们考虑如果结果是大于等于 2 的所有结果。

容易知道:必定有两个经过加x之后是完全平方数

so:

Screenshot_2023-01-29-19-00-59-117_com.orion.note

产生的因数真的很少:

计算方法:分解质因数,进行乘法原理。

1e9以内的数字分解质因数最大也就10个(\(2*3*5*7*..\)的值增长很快)

即使对于最小的质数 2 ,次方数也不超过36

所以总共的因子很少

代码

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll n;
const int N = 55;
ll a[N];
inline bool isdouble(ll x)// 判断x是不是完全平方数
{
    ll y = sqrt(x);
    return y * y == x;
}
ll ck(ll x)// 检验增加x之后有多少个数字是完全平方数
{
    ll res = 0;
    //cout << x << "  ";
    for(int i = 1; i <= n; i++){
        if(isdouble(x + a[i])) res++;
    }
    return res;
}
int main()
{
    int T;
    cin >> T;
    while(T --)
    {
        scanf("%lld", &n);
        for(int i = 1; i <= n; i++){
            scanf("%lld", a + i);
        }
        ll ans = 1;
        for(int i = 1; i <= n; i++){
            for(int j = i + 1; j <= n; j ++){
                ll d = a[j] - a[i];
                for(int x = 1; x <= sqrt(d); x ++){
                    if(d % x) continue;
                    ll y = d / x;
                    if(x+y & 1 || y-x & 1) continue;// 必须是偶数
                    if((x+y)*(x+y)/4-a[j] >= 0)// 由于是公式计算x,所以可能有负数
                        ans = max(ans, ck((x+y)*(x+y)/4-a[j]));
                }
            }
        }
        cout << ans << "\n";
    }
    return 0;
}

标签:10,844,int,ll,ans,Div,d2,Round,d1
From: https://www.cnblogs.com/xjsc01/p/17073684.html

相关文章

  • Codeforces Round #846 (Div. 2) B. GCD Partition
    B.GCDPartition参考题解链接:CodeforcesRound#846(Div.2)—Tutorial-Codeforces题意:给一个长度为n的序列,并将其分成连续的k块(k>1),得到序列......
  • 炉石传说 酒馆战棋 积分保护机制Developer Insights: Hearthstone Battlegrounds Rati
    https://hearthstone.blizzard.com/en-us/news/23523064BlizzardEntertainment09/28/2020 Greetings!I’mTian,aLeadDataScientistontheHearthstoneteam......
  • Codeforces Round #847 (Div. 3)
    A.PolycarpandtheDayofPi先纯一下圆周率前30位,然后暴力就好了#include<bits/stdc++.h>usingstd::cin;usingstd::cout;usingstd::string;intread(){...}......
  • Codeforces Round #847 (Div. 3) ABCDE
    url:Dashboard-CodeforcesRound#847(Div.3)-CodeforcesA.PolycarpandtheDayofPi题意:判断给的字符串前多少位跟PI一样思路:打个表,然后遍历一下即可,遇......
  • Codeforces Global Round 1
    A  题解:倒叙枚举即可。1#include<bits/stdc++.h>2usingnamespacestd;34typedeflonglongll;5constllN=1e6+3;6llb,k,a[N];7voidSolv......
  • NSS Round7_web
    概述:题目来源Round7的web4—Shadowflag。比赛的时候也没做出来,但是也花费了很长时间去做这题和思考,所以赛后复现记录一下,自己遇到的坑及收获的一些技巧,知识等。感谢陈橘墨......
  • Educational Codeforces Round 2 个人总结A-D
    EducationalCodeforcesRound3A.USBFlashDrives降序排序后,贪心,甚至不会爆longlongvoidsolve(){intn,m;cin>>n>>m;vector<int>a(n);for(......
  • NSSCTF Round7 WP
    NSSCTFRound7WP还不错,一个全场唯一解一个二血,队友还拿了一个一血(KoH)两个二血WebF|ez_RCE|Doxxxaction=1'&data=;cat/flag%23'2|OoO|DoxxxPOST/Ns_SC......
  • Codeforces Round #801 (Div. 2) and EPIC Institute of Technology Round A - D
    题目链接A#include<iostream>#include<cstring>#include<algorithm>usingnamespacestd;#defineintlonglongconstintN=1e3+10;intn,m;intg[N][N......
  • 定位的div环形圆形排列
    要实现一个类似于下图的效果,十个标签从中间随机出现的动画效果,若没有十个则按定义位置出现1.将十个标签都固定在中心位置,通过class,并且动态生成标签颜色<div......