首页 > 其他分享 >Codeforces Round #643 (Div. 2) ABD

Codeforces Round #643 (Div. 2) ABD

时间:2022-09-30 18:12:52浏览次数:83  
标签:typedef ABD int LL cin 643 487 const Div

这套题目也太顶了,强推

A-Sequence with Digits
https://codeforces.com/contest/1355/problem/A

题目大意:
给定一个初始数值n,问我们在每次都加上这个数字的数位最大值*最小值,

an+1=an+min Digit(an)⋅max Digit(an).

在经历了k次操作之后的最终结果是什么?

【注意k==1的时候不需要对n另外操作】。
input 
8
1 4
487 1
487 2
487 3
487 4
487 5
487 6
487 7
output 
42
487
519
528
544
564
588
628

一个细节没有考虑好,纯暴力可以wa半年

#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
typedef pair<LL,LL> PII;
const LL MAXN=2000020;
const int N=200200,M=2002;
int main()
{
    cin.tie(0); cout.tie(0);ios::sync_with_stdio(false);
    int T=1;
    cin>>T;
    while(T--)
    {
        LL n,k;
        cin>>n>>k;
        LL ans=n;
        for(LL i=2;i<=k;i++)
        {
            string s=to_string(ans);
            sort(s.begin(),s.end());
            if((s[0]-'0')==0) break;
            else ans+=((s[0]-'0')*(s[s.size()-1]-'0'));
        }
        cout<<ans<<endl;
    }
    return 0;
}

没想到吧,数位是0的时候就可以直接结束啦!

B-Young Explorers
https://codeforces.com/contest/1355/problem/B

题目大意:
每个人都有一个经验值a[i],每个人可以组队也可以不组队,

但前提要求是每个人要组队的话,必须要找到人数>=自己经验值的队伍

问我们能够组队的最大队伍数量是多少?
input 
2
3
1 1 1
5
2 3 1 2 2
output 
3
2

前几天刚在cf1400的题目上写了一个一摸一样的题目,照搬直接ac

#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
typedef pair<LL,LL> PII;
const LL MAXN=2000020;
const int N=200200,M=2002;
LL a[N],f[N];
int main()
{
    cin.tie(0); cout.tie(0);ios::sync_with_stdio(false);
    int T=1;
    cin>>T;
    while(T--)
    {
        LL n;
        cin>>n;
        for(LL i=1;i<=n;i++)
            cin>>a[i];
        sort(a+1,a+1+n);
        //for(int i=1;i<=n;i++)
        //    cout<<a[i]<<" ";
        //cout<<endl;
        LL maxn=0;
        f[0]=0;
        for(LL i=1;i<=n;i++)
        {
            f[i]=f[i-1];
            if(i>=a[i]) f[i]=max(f[i],f[i-a[i]]+1);
            //cout<<f[i]<<" ";
            maxn=max(maxn,f[i]);
        }
        //cout<<endl;
        cout<<maxn<<endl;
    }
    return 0;
}

D-Game With Array
https://codeforces.com/contest/1355/problem/D

题目大意:
给定一个数组长度n,给定一个总和m

让我们构造这样一个数组:长度为n,总和为m;并且任意子序列都凑不出S或S-k(S让我们自己找一个数)

满足这些条件的就按要求输出,不能满足的就输出-1。
inputCopy
1 4
outputCopy
YES
4
2
inputCopy
3 4
outputCopy
NO
inputCopy
3 8
outputCopy
YES
2 1 5
4

读懂题目就赢了一大半

  • 我们先特判NO的条件,发现在2的基础上,最小的数字都是2,所以直接把凑不出的数字定为1
  • 直接填充就行
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
typedef pair<LL,LL> PII;
const LL MAXN=2000020;
const int N=200200,M=2002;
LL a[N];
int main()
{
    cin.tie(0); cout.tie(0);ios::sync_with_stdio(false);
    int T=1;
    //cin>>T;
    while(T--)
    {
        LL n,m;
        cin>>n>>m;
        if(m<2*n) cout<<"NO"<<endl;
        else
        {
            cout<<"YES"<<endl;
            for(LL i=1;i<=n;i++)
            {
                if(i!=n)
                {
                    cout<<"2 ";
                    m-=2;
                }
                else cout<<m<<endl;
            }
            cout<<"1"<<endl;
        }
    }
    return 0;
}

哎,最近的判错机制总是判歪,我有点迷啊

标签:typedef,ABD,int,LL,cin,643,487,const,Div
From: https://www.cnblogs.com/Vivian-0918/p/16745765.html

相关文章

  • Codeforces Round #822 (Div. 2)
    Preface这场间隔有点久了,ABC是上周日打的,DE是这周四写的感觉这场难度海星,比DE都不会的823友好多了A.SelectThreeSticks容易发现最终变成的长度一定是已经存在的,因......
  • *Codeforces Round #235 (Div. 2) C. Team(贪心)
    https://codeforces.com/contest/401/problem/C题目大意:给定n个0,m个1;让我们构建出一个字符串满足:不能连续2个以上的0,不能出现3个连续的1;可以的话就输出任意正确的结......
  • div设置背景色层级高于其包含的img
    正常的position:relative和z-index配置<styletype="text/css">*{margin:0px;padding:0px;}.navs{width:300px;height:300px;margin:100px200px;......
  • Codeforces Round #823 (Div. 2)
    B.MeetingontheLine题意:有n个人,第i个人的坐标是xi,从xi移动到yi要花|xi -yi|的时间。除此之外,他还需要ti 的时间打扮。试求一点使得所有人到这里所花时间的最大......
  • *ABC 245 D - Polynomial division(数论/思维)
    https://atcoder.jp/contests/abc245/tasks/abc245_d题目大意:n个数字,代表A(X)=a[0]*X^0+a[1]*X^1+......+a[n]*X^n;m个数字,代表B(X)=b[0]*X^0+b[1]*X^1+...........
  • Educational Codeforces Round 135 (Rated for Div. 2) - E. Red-Black Pepper
    exgcdProblem-E-Codeforces题意给\(n\;(n<=3*10^5)\)个菜,每个菜可以加红辣椒或黑辣椒,分别可以获得\(c[i],d[i]\)分;有\(m\;(m<=3*10^5)\)个商店,第i个商店包......
  • Codeforces Round #240 (Div. 1) B. Mashmokh and ACM(DP)
    https://codeforces.com/contest/414/problem/B题目大意:给定一个范围【1,k】,要求我们从这里面选出n个数字,并且满足任意两个相邻数字中后一个数字%前一个数字==0问我......
  • CSS0027: div 倒角效果
    1,<divid="test"></div>#test{display:inline-block;width:100px;height:100px;background:linear-gradient(135d......
  • Codeforces Round #105 (Div. 2) D. Bag of mice
    CodeforcesRound#105(Div.2)翻译岛田小雅D.Bagofmice出题人Nickolas巨龙和公主在纠结大年夜应该干什么。巨龙想去山上看精灵们在月光下跳舞,但公主只想早点睡......
  • Codeforces Round #823 (Div. 2)(持续更新)
    Preface本来没准备打这场比赛的,因为昨天出去high玩了一整天才发现今天才发现晚上有CF,遂报名rush一发结果今天状态有点崩,先是B看错题导致浪费时间,然后又是D自己叉自己把原......