AtCoder Beginner Contest 166 F Three Variables Game 中庸之道

2023-10-24 08:59

本文主要是介绍AtCoder Beginner Contest 166 F Three Variables Game 中庸之道,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

AtCoder Beginner Contest 166   比赛人数11690  比赛开始后11分钟看到所有题

AtCoder Beginner Contest 166  F  Three Variables Game   中庸之道

总目录详见https://blog.csdn.net/mrcrack/article/details/104454762

在线测评地址https://atcoder.jp/contests/abc166/tasks/abc166_f

思路:

1.若当前两字母数量不等,让数量多的减1,数量少的加1.可以这样考虑,因测试数据是随机生成,之后的数据,遇到两字母的概率应该均等,故采用中庸之道,让两者数量尽量接近。

2.若当前两字母数量相等,考虑让接下来马上要用到的加1(因为只有3个字母,所有一定会有一个字母,接下来马上用到),另一个减1

3.若当前需要减1的数量是0,那么输出No.

样例模拟如下

Input:
8 6 9 1
AC
BC
AB
BC
AC
BC
AB
AB
Output:
Yes
C
C
A
C
C
C
B
A8 6 9 1
AC
6>1 6-1=5,1+1=2,输出C   当前A,B,C数量5,9,2BC
9>2 9-1=8,2+1=3,输出C   当前A,B,C数量5,8,3AB
5<8 8-1=7,5+1=6,输出A   当前A,B,C数量6,7,3BC
7>3 7-1=6,3+1=4,输出C   当前A,B,C数量6,6,4AC
6>4 6-1=5,4+1=5,输出C   当前A,B,C数量5,6,5BC
6>5 6-1=5,5+1=6,输出C   当前A,B,C数量5,5,6AB
5==5 接下来马上会用到B 让B加,A减,5-1=4,5+1=6,输出B   当前A,B,C数量4,6,6AB
4>6 6-1=5,4+1=5,输出A   当前A,B,C数量5,5,6

AC代码如下

#include <cstdio>
#include <algorithm>
#define maxn 100010
using namespace std;
char in[3];
int n,v[3],p[maxn],q[maxn],ans[maxn];
int main(){int i;scanf("%d",&n);for(i=0;i<3;i++)scanf("%d",&v[i]);//v[0]代表'A'的数量,v[1]代表'B'的数量,v[2]代表'C'的数量for(i=1;i<=n;i++)scanf("%s",in),p[i]=in[0]-'A',q[i]=in[1]-'A';for(i=1;i<=n;i++){if(v[p[i]]>v[q[i]])swap(p[i],q[i]);//让v[]小的在前else if(v[p[i]]==v[q[i]]){if(i+1<=n&&(q[i]==p[i+1]||q[i]==q[i+1]))swap(p[i],q[i]);//让接下来马上要用到的,在前}if(!v[q[i]])return 0*printf("No\n");v[p[i]]++,v[q[i]]--,ans[i]=p[i];}printf("Yes\n");for(i=1;i<=n;i++)printf("%c\n",'A'+ans[i]);return 0;
}

该题总体印象,数据弱,很多代码虽能AC,但贪心正确与否,还是值得商榷的。

这篇关于AtCoder Beginner Contest 166 F Three Variables Game 中庸之道的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/274118

相关文章

2014 Multi-University Training Contest 8小记

1002 计算几何 最大的速度才可能拥有无限的面积。 最大的速度的点 求凸包, 凸包上的点( 注意不是端点 ) 才拥有无限的面积 注意 :  凸包上如果有重点则不满足。 另外最大的速度为0也不行的。 int cmp(double x){if(fabs(x) < 1e-8) return 0 ;if(x > 0) return 1 ;return -1 ;}struct poin

2014 Multi-University Training Contest 7小记

1003   数学 , 先暴力再解方程。 在b进制下是个2 , 3 位数的 大概是10000进制以上 。这部分解方程 2-10000 直接暴力 typedef long long LL ;LL n ;int ok(int b){LL m = n ;int c ;while(m){c = m % b ;if(c == 3 || c == 4 || c == 5 ||

2014 Multi-University Training Contest 6小记

1003  贪心 对于111...10....000 这样的序列,  a 为1的个数,b为0的个数,易得当 x= a / (a + b) 时 f最小。 讲串分成若干段  1..10..0   ,  1..10..0 ,  要满足x非递减 。  对于 xi > xi+1  这样的合并 即可。 const int maxn = 100008 ;struct Node{int

fzu 2275 Game KMP

Problem 2275 Game Time Limit: 1000 mSec    Memory Limit : 262144 KB  Problem Description Alice and Bob is playing a game. Each of them has a number. Alice’s number is A, and Bob’s number i

AtCoder Beginner Contest 370 Solution

A void solve() {int a, b;qr(a, b);if(a + b != 1) cout << "Invalid\n";else Yes(a);} B 模拟 void solve() {qr(n);int x = 1;FOR(i, n) FOR(j, i) qr(a[i][j]);FOR(i, n) x = x >= i ? a[x][i]: a[i][x];pr2(

Three 渲染器(二)

WebGL1Renderer 构造函数 WebGL1Renderer( parameters : Object ) Creates a new WebGL1Renderer. 属性 See the base WebGLRenderer class for common properties. 方法 See the base WebGLRenderer class for common

10400 -Game Show Math

这道题的话利用了暴力深搜,尽管给了20S,但是这样还会超时,所以就需要利用回溯进行减枝,因为是DFS,所以用一个数组vis[i][j]记录是否在状态i时候取到过j值,如果取到过的话,那么直接回溯(往后搜索已经没有意义了,之前到达这个状态的时候是无法得到结果的) 还有需要注意的地方就是题目的要求,每一步的结构都在(-32000,32000)之间,所以需要一步判断,如果在这个范围外直接回溯 最后一

leetcode#628. Maximum Product of Three Numbers

题目 Given an integer array, find three numbers whose product is maximum and output the maximum product. Example 1: Input: [1,2,3]Output: 6 Example 2: Input: [1,2,3,4]Output: 24 Note: The lengt

CF Bayan 2015 Contest Warm Up B.(dfs+暴力)

B. Strongly Connected City time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/475/probl

CF Bayan 2015 Contest Warm Up A.(模拟+预处理)

A. Bayan Bus time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/475/problem/A The fi