首页 > 其他分享 >Acwing第 85 场周赛 ABC

Acwing第 85 场周赛 ABC

时间:2023-01-07 22:11:38浏览次数:55  
标签:周赛 typedef ABC const int LL father cin 85

https://www.acwing.com/activity/content/2755/

4791. 死或生

题目大意:

给定n组(10个人)对2个犯人(编号1,2)的生死评价,总数:生>=死,活下来,否则嘎了
输入样例1:
2
1 5 5
2 6 4
输出样例1:
LIVE
LIVE
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
typedef pair<LL,LL> PII;
const LL MAXN=1e18;
const LL N=10200,M=2002;
//unordered_map<LL,LL> a[N];
//priority_queue<LL> pq;
//priority_queue<LL,vector<LL>,greater<LL>> pq2;
int main()
{
    cin.tie(0); cout.tie(0); ios::sync_with_stdio(false);
    LL T=1;
    cin>>T;
    map<LL,LL> huo,si;
    while(T--)
    {
        LL op,x,y;
        cin>>op>>x>>y;
        huo[op]+=x;
        si[op]+=y;
    }
    if(huo[1]>=si[1]) cout<<"LIVE"<<endl;
    else cout<<"DEAD"<<endl;
    if(huo[2]>=si[2]) cout<<"LIVE"<<endl;
    else cout<<"DEAD"<<endl;
    return 0;
}

4792. 最大价值

题目大意:

a∼z的价值分别为wa,wb,…,wz。字符串S=s1s2…sl,其价值为 ws1×1+ws2×2+…+wsl×l。

在这个字符串s中随意插入k个小写字母,要求最终得到的字符串的价值尽可能大。
输入样例:
abc
3
1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
输出样例:
41
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
typedef pair<LL,LL> PII;
const LL MAXN=1e18;
const LL N=10200,M=2002;
//unordered_map<LL,LL> a[N];
//priority_queue<LL> pq;
//priority_queue<LL,vector<LL>,greater<LL>> pq2;
LL a[N];
int main()
{
    cin.tie(0); cout.tie(0); ios::sync_with_stdio(false);
    LL T=1;
    //cin>>T;
    while(T--)
    {
        string s;
        cin>>s;
        LL k;
        cin>>k;
        LL maxn=-MAXN;
        LL sum=0;
        map<char,LL> mp;
        for(int i=1;i<=26;i++)
        {
            cin>>a[i];
            maxn=max(maxn,a[i]);
            mp[char(i+96)]=a[i];
        }
        for(int i=0;i<s.size();i++)
            sum+=mp[s[i]]*(i+1);
        //cout<<sum<<endl;
        LL len=s.size()+1;
        //cout<<maxn<<" "<<len<<endl;
        for(int i=len;i<=len+k-1;i++)
        {

            sum+=maxn*i;
        }
        cout<<sum<<endl;
    }
    return 0;
}

4793. 危险程度

题目大意:

n 种化学物质(编号 1∼n),有m对物质之间会发生反应。 倒入顺序随意,求试管的最大危险值。

已知,空试管的危险值为 1,每倒入一种化学物质,如果该物质能够与之前倒入试管中的一种或多种物质发生反应,则试管的危险值将乘以 2。 
输入样例3:
3 2
1 2
2 3
输出样例3:
4
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
typedef pair<LL,LL> PII;
const LL MAXN=1e18;
const LL N=1000,M=2002;
//unordered_map<LL,LL> a[N];
//priority_queue<LL> pq;
//priority_queue<LL,vector<LL>,greater<LL>> pq2;
LL n,m;
LL father[N];
LL find(LL x)
{
    if(father[x]!=x) father[x]=find(father[x]);
    return father[x];
}
void merge(LL x,LL y)
{
    LL fx=find(x),fy=find(y);
    if(fx!=fy) father[fx]=fy;
}
void init()
{
    for(int i=0;i<=n;i++)
    {
        father[i]=i;
    }
}
int main()
{
    //cin.tie(0); cout.tie(0); ios::sync_with_stdio(false);
    LL T=1;
    //cin>>T;
    while(T--)
    {
        cin>>n>>m;
        init();
        for(int i=1;i<=m;i++)
        {
            LL x,y;
            cin>>x>>y;
            merge(x,y);
        }
        LL sum=1;
        for(int i=1;i<=n;i++)
        {
            LL fi=find(i);
            if(fi==i) ;
            else sum*=2;
        }
        cout<<sum<<endl;
    }
    return 0;
}

并查集写法,不懂我的dfs写法怎么跑的一塌糊涂

标签:周赛,typedef,ABC,const,int,LL,father,cin,85
From: https://www.cnblogs.com/Vivian-0918/p/17033697.html

相关文章

  • 牛客小白月赛65ABCD(E)
               比赛链接:牛客小白月赛65_ACM/NOI/CSP/CCPC/ICPC算法编程高难度练习赛_牛客竞赛OJ(nowcoder.com)A:牛牛去购物题意:给n元钱,有两种......
  • [ABC253Ex] We Love Forest
    [ABC253Ex]WeLoveForestSolution目录[ABC253Ex]WeLoveForestSolution更好的阅读体验戳此进入题面SolutionCodeUPD更好的阅读体验戳此进入题面给定$n$个点......
  • [ABC257Ex] Dice Sum 2 题解
    [ABC257Ex]DiceSum2Solution目录[ABC257Ex]DiceSum2Solution更好的阅读体验戳此进入题面SolutionCodeUPD更好的阅读体验戳此进入题面存在$n$个正六面体骰......
  • [ABC250Ex] Trespassing Takahashi 题解
    [ABC250Ex]TrespassingTakahashiSolution目录[ABC250Ex]TrespassingTakahashiSolution更好的阅读体验戳此进入题面SolutionCodeUPD更好的阅读体验戳此进入题面给......
  • [ABC261E] Many Operations 题解
    [ABC261E]ManyOperationsSolution目录[ABC261E]ManyOperationsSolution更好的阅读体验戳此进入题面SolutionCodeUPD更好的阅读体验戳此进入题面给定正整数$X$......
  • [ABC261D] Flipping and Bonus 题解
    [ABC261D]FlippingandBonusSolution目录[ABC261D]FlippingandBonusSolution更好的阅读体验戳此进入题面SolutionCodeUPD更好的阅读体验戳此进入题面掷$n$......
  • [ABC264F] Monochromatic Path 题解
    [ABC264F]MonochromaticPathSolution目录[ABC264F]MonochromaticPathSolution更好的阅读体验戳此进入题面SolutionCodeUPD更好的阅读体验戳此进入题面给定一个$......
  • [ABC263F] Tournament 题解
    [ABC263F]TournamentSolution目录[ABC263F]TournamentSolution更好的阅读体验戳此进入题面SolutionCodeUPD更好的阅读体验戳此进入题面给定$n$,存在$2^n$个......
  • [ABC264Ex] Perfect Binary Tree 题解
    [ABC264Ex]PerfectBinaryTreeSolution目录[ABC264Ex]PerfectBinaryTreeSolution更好的阅读体验戳此进入题面SolutionCodeUPD更好的阅读体验戳此进入题面存在一......
  • [ABC264G] String Fair
    [ABC264G]StringFairSolution目录[ABC264G]StringFairSolution更好的阅读体验戳此进入题面SolutionCodeUPD更好的阅读体验戳此进入题面给定$n$条评分规则,每......