B. Merge it!

You are given an array a consisting of n integers a1,a2,…,an.

In one operation you can choose two elements of the array and replace them with the element equal to their sum (it does not matter where you insert the new element). For example, from the array [2,1,4] you can obtain the following arrays: [3,4], [1,6] and [2,5].

Your task is to find the maximum possible number of elements divisible by 3 that are in the array after performing this operation an arbitrary (possibly, zero) number of times.

You have to answer t independent queries.

Input
The first line contains one integer t (1≤t≤1000) — the number of queries.

The first line of each query contains one integer n (1≤n≤100).

The second line of each query contains n integers a1,a2,…,an (1≤ai≤109).

Output
For each query print one integer in a single line — the maximum possible number of elements divisible by 3 that are in the array after performing described operation an arbitrary (possibly, zero) number of times.

Example
inputCopy
2
5
3 1 2 3 1
7
1 1 1 1 1 2 2
outputCopy
3
3
Note
In the first query of the example you can apply the following sequence of operations to obtain 3 elements divisible by 3: [3,1,2,3,1]→[3,3,3,1].

In the second query you can obtain 3 elements divisible by 3 with the following sequence of operations: [1,1,1,1,1,2,2]→[1,1,1,1,2,3]→[1,1,1,3,3]→[2,1,3,3]→[3,3,3].

题意
数组里随意选两个数相加,所求的和放入数组并替换掉选中的两个数,多次(也可以是0次)操作后,问数组中能被3整除的数的个数最多是多少
思路
我太蠢了orz
贴一个一开始没有想到的思路
每个数对3取余,找出等价类(就是说余1的放在一块,余2的放在一块,余3就不用了,直接算入cnt),统计余1的有几个,余2的有几个,因为1个余1和1个余2凑出一个余3的,所以余1的和余2的最多能凑的余3的个数就是它们之间的最小值,剩下如果余1多了,3个余1凑余3。如果余2多了,3个余2凑余3。

#include<iostream>
#include<string>
#include<string.h>
#include<algorithm>
#include<vector>
#include<map>
#include<set>
//#include<bits/stdc++.h>
using namespace std;

int main()
{
	int t;
	cin >> t;
	while (t--)
	{
		int y1=0; //y1是标识符...但是放在局部里不会有问题
		int y2=0;
		int n;
		int cnt = 0;
		int sum = 0;
		cin >> n;
		for (int i = 1; i <= n; i++)
		{
			int x;
			cin >> x;
			if (x % 3 == 0) cnt++;
			else if (x % 3 == 1) y1++;
			else y2++;
		}
			int y = min(y1, y2);
			cnt += y;
			y1 -= y;
			y2 -= y;
			if (y1 > 0) cnt += y1 / 3;
			else if (y2 > 0) cnt += y2 / 3;
		
		cout << cnt<<endl;
	}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值