Educational Codeforces Round 107 (Rated for Div. 2) A题

A. Review Site

time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
You are an upcoming movie director, and you have just released your first movie. You have also launched a simple review site with two buttons to press — upvote and downvote.

However, the site is not so simple on the inside. There are two servers, each with its separate counts for the upvotes and the downvotes.

n reviewers enter the site one by one. Each reviewer is one of the following types:

type 1: a reviewer has watched the movie, and they like it — they press the upvote button;
type 2: a reviewer has watched the movie, and they dislike it — they press the downvote button;
type 3: a reviewer hasn’t watched the movie — they look at the current number of upvotes and downvotes of the movie on the server they are in and decide what button to press. If there are more downvotes than upvotes, then a reviewer downvotes the movie. Otherwise, they upvote the movie.
Each reviewer votes on the movie exactly once.

Since you have two servers, you can actually manipulate the votes so that your movie gets as many upvotes as possible. When a reviewer enters a site, you know their type, and you can send them either to the first server or to the second one.

What is the maximum total number of upvotes you can gather over both servers if you decide which server to send each reviewer to?

Input
The first line contains a single integer t (1≤t≤104) — the number of testcases.

Then the descriptions of t testcases follow.

The first line of each testcase contains a single integer n (1≤n≤50) — the number of reviewers.

The second line of each testcase contains n integers r1,r2,…,rn (1≤ri≤3) — the types of the reviewers in the same order they enter the site.

Output
For each testcase print a single integer — the maximum total number of upvotes you can gather over both servers if you decide which server to send each reviewer to.

Example
inputCopy
4
1
2
3
1 2 3
5
1 1 1 1 1
3
3 3 2
outputCopy
0
2
5
2
Note
In the first testcase of the example you can send the only reviewer to either of the servers — they’ll downvote anyway. The movie won’t receive any upvotes.

In the second testcase of the example you can send all reviewers to the first server:

the first reviewer upvotes;
the second reviewer downvotes;
the last reviewer sees that the number of downvotes is not greater than the number of upvotes — upvote themselves.
There are two upvotes in total. Alternatevely, you can send the first and the second reviewers to the first server and the last reviewer — to the second server:

the first reviewer upvotes on the first server;
the second reviewer downvotes on the first server;
the last reviewer sees no upvotes or downvotes on the second server — upvote themselves.
AC code

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
 
using namespace std;
 
const int N=51;
int n;
char q[N],l[2],r[2];
int main(){
	int m;
	scanf("%d",&m);
	while(m--){
		for(int i=0;i<2;i++)	l[i]=r[i]=0;
		int n;
		scanf("%d",&n);
		for(int i=0;i<n;i++)	scanf("%d",&q[i]);
		for(int i=0;i<n;i++){
			if(q[i] == 1) 	l[0]++;
			else if(q[i] == 2) r[1]++;
			else if(q[i] == 3){
				if(!(l[0] < l[1])){
					l[0]++;
				}
			}
		}
		printf("%d\n",l[0]);
	}
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值