• 2022/9/17(cf·div2)https://codeforces.com/contest/1728


    A题:https://codeforces.com/contest/1728/problem/A
    //最大数量的牌一定可以成为答案

    #include
    using namespace std;
    #define int long long
    int b[200005];
    
    signed main()
    {
    	int tt;
    	cin>>tt;
    	while(tt--)
    	{
    		int n;
    		cin>>n;
    		int ans=0,p;
    		for(int i=0;i<n;i++)
    		{
    			cin>>b[i];
    			if(ans<b[i])
    			{
    				ans=b[i];
    				p=i+1;
    			}
    		}
    		cout<<p<<'\n';
    	}
    }
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28

    B题:https://codeforces.com/problemset/problem/1728/B
    //最后两个数,一定是最大的两个数,n-1,n;
    //和n-1比较的一定是0
    //把剩余的数分两堆,一堆小的,一堆大的,分别配对;
    //奇数个数时,会有数落单,把剩余的数的最中间一位排第一位,然后按大小,大小的排序;
    //3 5 1 4 2 6 7
    //5可以把3吸进去且不为0
    //遇小为0,不影响我配对的目的

    #include
    using namespace std;
    #define int long long
    int b[200005];
    
    signed main()
    {
    	int tt;
    	cin>>tt;
    	while(tt--)
    	{
    		int n;
    		cin>>n;
    		if(n&1)cout<<n/2<<" ";
    		int l=1,r=n-2;
    		while(l<r)
    		{
    			cout<<r<<" "<<l<<" ";
    			l++,r--;
    		}
    		cout<<n-1<<" "<<n;
    		puts("");
    	}
    }
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    C题:https://codeforces.com/problemset/problem/1728/C
    //模拟,看代码
    //之前不会是因为不知道方法

    #include
    using namespace std;
    #define int long long
    
    signed main()
    {
    	ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
    	//不用会超时
    	int tt;
    	cin>>tt;
    	while(tt--)
    	{
    		int n;
    		cin>>n;
    		vector<int>v1(n),v2(n);
    		for(int i=0;i<n;i++)
    			cin>>v1[i];
    		for(int i=0;i<n;i++)
    			cin>>v2[i];
    		
    		priority_queue<int>q1(v1.begin(),v1.end());
    		priority_queue<int>q2(v2.begin(),v2.end());
    		
    		int ans=0;
    		
    		while(q1.empty()==0)
    		{
    			if(q1.top()==q2.top())
    			{
    				q1.pop();q2.pop();
    				continue;
    			}
    			ans++;
    			if(q1.top()>q2.top())
    			{
    				q1.push(to_string(q1.top()).size());//求一个数的位数
    				//等同于q1.push(log10(q1.top())+1);毛爷教的
    				q1.pop();
    			}
    			else
    			{
    				q2.push(to_string(q2.top()).size());
    				q2.pop();
    			}
    		}
    		cout<<ans<<'\n';
    	}
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49

    D我不会呀

  • 相关阅读:
    redis过期key的清理/删除策略
    Conda快速安装的解决方法(Mamba安装)
    使用高斯混合模型进行聚类
    XXL-JOB任务有效期支持实现方案
    Sentinel-流量防卫兵
    面试题: Hive-SQL查询连续活跃登录用户思路详解
    热门Java开发工具IDEA入门指南——初次运行IntelliJ IDEA
    react-activation缓存React.lazy异步组件问题记录
    网络编程、广播、组播、数据库sqlite3
    AI绘画Stable Diffusion 自制素材工具: layerdiffusion插件—透明背景生成工具
  • 原文地址:https://blog.csdn.net/m0_66433418/article/details/126911461