首页 > 其他分享 >Refact.ai Match 1 (Codeforces Round 985)

Refact.ai Match 1 (Codeforces Round 985)

时间:2024-11-16 21:59:07浏览次数:1  
标签:return ai void Codeforces long 985 int solve include

Refact.ai Match 1 (Codeforces Round 985) 总结

A

集合中的元素为 \(l \le x \le r\),有 \(k\) 个 \(x\) 的倍数在其中才可删,可以求出最大可删的元素,直接计算。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <vector>
#include <queue>
#include <map>

using namespace std;
typedef long long ll;
const int N=1;
ll l,r,k;
void solve()
{
    cin>>l>>r>>k;
    r=r/k;
    cout<<max(0ll,r-l+1)<<'\n';
}
int main ()
{
    #ifndef ONLINE_JUDGE
    freopen("1.in","r",stdin);
    freopen("1.out","w",stdout);
    #endif 
    ios::sync_with_stdio(0);
    cin.tie(0);cout.tie(0);
    int T;
    cin>>T;
    while(T--) solve();
    return 0;
}

B

思考一下,发现我们并不关心 \(0\) 和 \(1\) 的顺序,只关心数量,只要同时有 \(0\) 和 \(1\) 就能进行操作,这样模拟过程即可。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <vector>
#include <queue>
#include <map>

using namespace std;
typedef long long ll;
const int N=1e5+5;
int n;
string s,r;
int a[2];
void solve()
{
	cin>>n>>s>>r;
	a[0]=a[1]=0;
	for(int i=0;i<n;i++) a[s[i]-'0']++;
	for(int i=0;i<n-1;i++)
	{
		if(a[0]&&a[1])
		{
			a[0]--,a[1]--;
			a[r[i]-'0']++;
		}
		else 
		{
			cout<<"No\n";
			return ;
		}
	}
	cout<<"Yes\n";
}
int main ()
{
	#ifndef ONLINE_JUDGE
	freopen("1.in","r",stdin);
	freopen("1.out","w",stdout);
	#endif 
	ios::sync_with_stdio(0);
	cin.tie(0);cout.tie(0);
	int T;
	cin>>T;
	while(T--) solve();
	return 0;
}

C

首先要明确一点,更大的初始值在通过几场比赛后的评分一定不劣于更小的初始值。

答案的范围显然为 \([1,n-1]\),计算最大的可能评分,考虑二分答案。
如何检验?设 \(b_i\) 为通过前 \(i\) 场比赛能获得的评分,再取前缀最大值。检验的时候从后往前扫,逆过程当 \(x=a_i\) 时能有三种情况,显然我们要令 \(x\) 更小,所以当 \(x \le a_i\) 时,\(x\) 要减一,否则加一。若此时 \(b_{i-1}>=x\),则说明前缀中出现了大于等于能达到答案的最小的评分的值,返回真。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <vector>
#include <queue>
#include <map>
#include <set>
using namespace std;
typedef long long ll;
const int N=3e5+5;
int n;
int a[N],b[N];
bool check(int k)
{
    int x=k;
    for(int i=n;i>=1;i--)
    {
        if(b[i-1]>=x) return 1;
        if(a[i]>=x) x--;
        else x++;
    }
    return 0;
}
void solve()
{
    cin>>n;
    for(int i=1;i<=n;i++) cin>>a[i];
    if(n==1)
    {
        cout<<0<<'\n';
        return ;
    }
    int x=0,ans=0;
    for(int i=1;i<=n;i++)
    {
        if(a[i]>x) x++;
        else if(a[i]<x) x--;
        b[i]=max(b[i-1],x);
    }
    int l=1,r=n,mid;
    while(l<=r)
    {
        mid=(l+r)/2;
        if(check(mid)) ans=mid,l=mid+1;
        else r=mid-1;
    }
    cout<<min(ans,n-1)<<'\n';
}
int main ()
{
    #ifndef ONLINE_JUDGE
    freopen("1.in","r",stdin);
    freopen("1.out","w",stdout);
    #endif 
    ios::sync_with_stdio(0);
    cin.tie(0);cout.tie(0);
    int T;
    cin>>T;
    while(T--) solve();
    return 0;
}

D

操作数最多为 \(2 \times \max(n,m)\),可以考虑先将图全部拆了再建树。

对于每个度数大于 \(1\) 的点 \(x\),选择于点 \(x\) 相邻的两个点 \(y\),\(z\),对 \((x,y,z)\) 进行一次操作,若 \(y\) 于 \(z\) 有边相连,则会减少 \(3\) 条边,否则会减少 \(1\) 条边。因此这样拆图的操作数最大为 \(m-1\)。

最终整个图就都是些度数小于等于 \(1\) 的点。也就是说,要么是单个点,要么是两个点连一条边。如果都是单个点显然就不用继续了,否则考虑其中一个度数为 \(1\) 的点为 \(x\),与其相连的点为 \(y\),接下来建的树以 \(x\) 为根。每次选择没合并进来的点 \(z\) 不管它的度数,对 \((x,y,z)\) 进行操作。此时 \(y\) 与 \(z\) 相连,\(z\) 与 \(x\) 相连,将 \(y\) 更新为 \(z\) 继续操作。每次至少能合并一个点,所以这个过程的操作数最大为 \(n-1\)。

考虑两个过程如何实现,第一个过程用 set 存边,可以轻易实现删边和加边。
第二个过程可以使用并查集,因为只有合并的操作。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <vector>
#include <queue>
#include <map>
#include <set>
using namespace std;
typedef long long ll;
const int N=1e5+5,M=4e5+5;
int n,m;
set<int> s[N];
int deg[N];
struct node 
{
    int x,y,z;
}ans[M];
int tot;
void add(int x,int y)
{
    s[x].insert(y);
    s[y].insert(x);
}
void del(int x,int y)
{
    s[x].erase(y);
    s[y].erase(x);
}
int fa[N];
int find(int x)
{
    if(x==fa[x]) return x;
    return fa[x]=find(fa[x]);
}
void solve()
{
    cin>>n>>m;
    tot=0;
    for(int i=1;i<=n;i++) s[i].clear(),deg[i]=0,fa[i]=i;
    for(int i=1;i<=m;i++)
    {
        int x,y;
        cin>>x>>y;
        add(x,y);
        deg[x]++,deg[y]++;
    }
    for(int i=1;i<=n;i++)
    {
        while(deg[i]>1)
        {
            auto it=s[i].begin();
            int x=*it;
            it++;
            int y=*it;
            del(x,i),del(y,i);
            deg[i]-=2;
            ans[++tot]={i,x,y};
            if(s[x].count(y))
            {
                del(x,y);
                deg[x]-=2;
                deg[y]-=2;
            }
            else add(x,y);
        }
    }
    bool st=0;
    int x,y;
    for(int i=1;i<=n;i++)
    {
        if(deg[i])
        {
            st=1;
            x=i,y=*s[i].begin();
            fa[find(x)]=find(y);
        }
    }
    if(st)
    {
        x=find(x);
        for(int i=1;i<=n;i++)
        {
            int z=find(i);
            if(z!=x)
            {
                ans[++tot]={x,y,z};
                y=z;
                fa[z]=x;
            }
        }
    }
    cout<<tot<<'\n';
    for(int i=1;i<=tot;i++) cout<<ans[i].x<<' '<<ans[i].y<<' '<<ans[i].z<<'\n';
}
int main ()
{
    #ifndef ONLINE_JUDGE
    freopen("1.in","r",stdin);
    freopen("1.out","w",stdout);
    #endif 
    ios::sync_with_stdio(0);
    cin.tie(0);cout.tie(0);
    int T;
    cin>>T;
    while(T--) solve();
    return 0;
}

标签:return,ai,void,Codeforces,long,985,int,solve,include
From: https://www.cnblogs.com/zhouruoheng/p/18549849

相关文章

  • AIGC中的文本风格迁移:基于深度学习的实现
    引言文本风格迁移是自然语言处理领域的一个重要研究方向,它可以将文本从一种风格转换为另一种风格,同时保留其原有的内容。随着深度学习技术的发展,文本风格迁移的方法变得越来越先进和高效。本文将探讨基于序列到序列模型(Seq2Seq)的文本风格迁移技术,并提供基于PyTorch的代码示例......
  • Codeforces Round 987 (Div. 2)
    好不容易的一次CF阳间赛,这次题目普遍较长。A-PenchickandModernMonument题目大意将一个非递增的序列通过操作某些数(可增大可减小),最终使得序列变成一个非递减的序列,求出最少要操作多少次?解题思路这个题也是想了不断时间,而且还提交错误一次,原因就是调试的代码没......
  • AI 写作(九)实战项目二:智能新闻报道(9/10)
    一、项目概述在当今信息爆炸的时代,新闻传播行业正面临着前所未有的挑战与机遇。随着科技的飞速发展,人们获取信息的渠道日益多样化,对新闻的时效性、准确性和个性化需求也不断提高。在这样的背景下,AI写作在智能新闻报道中的重要性愈发凸显。AI写作能够极大地提高新闻报道的效......
  • OpenAI模型whisper 音频转文本
    最近有一个音频转文本的需求,了解到了OpenAI的whisper模型可以实现。Whisper是OpenAI提供的一个通用语音识别模型,支持多语言的音频转文本功能,并具有较高的准确性。它的主要用途包括自动语音识别 (ASR)、语言翻译(将音频直接翻译成英文文本)等。Whisper支持将长时间音频文件(......
  • 【转载】遗传算法—HyperNEAT Explained——Advancing Neuroevolution
    原文地址:https://hunterheidenreich.com/posts/next-gen-neuroevolution-hyperneat/ExpandingNeuroEvolutionLastweek,IwroteanarticleaboutNEAT(NeuroEvolutionofAugmentingTopologies)andwediscussedalotofthecoolthingsthatsurroundedthealgori......
  • langchain_chatchat+ollama部署本地知识库,联网查询以及对数据库(Oracle)数据进行查询
    langchain_chatchat+ollama部署本地知识库,联网查询以及对数据库(Oracle)数据进行查询涉及的内容其实挺多的,所以尽量减少篇幅目录langchain_chatchat+ollama部署本地知识库,联网查询以及对数据库(Oracle)数据进行查询准备工作:部署ollama以及拉取模型部署langchain_chatchat部署ora......
  • ssm125四六级报名与成绩查询系统+jsp(论文+源码)_kaic
     毕业设计(论文)题目:四六级报名与成绩查询系统的设计与实现      摘 要互联网发展至今,无论是其理论还是技术都已经成熟,而且它广泛参与在社会中的方方面面。它让信息都可以通过网络传播,搭配信息管理工具可以很好地为人们提供服务。针对四六级报名信息管理混......
  • Codeforces Round 987 (Div. 2)
    训练记录CodeforcesRound987(Div.2)4/6前四题都是简单思维题A.PenchickandModernMonument这个题目最贪心的做法是找到出现最多的数,保留种数字不变,其他按照题目要求改大小就行//Problem:A.PenchickandModernMonument//Contest:Codeforces-CodeforcesRound......
  • AI|经常崩溃的问题解决
    AdobeIllustratorCrashes网络上大部分说法都是重装AI,兼容性问题,管理员权限或者是版本不对,经测试均无效,甚至出现重装系统这种离谱的办法,正确的解决办法是把首选项的性能里的GPU取消勾选,或者再把电脑的虚拟内存扩大即可。 Step1:打开首选项 Step2:取消勾选GPU性能......
  • AI对口型视频生成工具需要魔法
    探索未来:HedraAI对口型视频生成工具的革命在数字媒体的浪潮中,人工智能技术正以前所未有的速度改变着内容创作的方式。Hedra,这个由原斯坦福大学研究团队成立的数字创作实验室推出的AI对口型视频生成工具,正是这一变革的先锋。它专注于将AI技术应用于人物角色视频的生成,为数字......