博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces1176B(B题)Merge it!
阅读量:4961 次
发布时间:2019-06-12

本文共 1638 字,大约阅读时间需要 5 分钟。

B. Merge it!

You are given an array aanna1,a2,,ana1,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][2,1,4][3,4][3,4][1,6][1,6][2,5][2,5]

Your task is to find the maximum possible number of elements divisible by 33

You have to answer tt

Input

The first line contains one integer tt1t10001≤t≤1000

The first line of each query contains one integer nn1n1001≤n≤100

The second line of each query contains nna1,a2,,ana1,a2,…,an1ai1091≤ai≤109

Output

For each query print one integer in a single line — the maximum possible number of elements divisible by 3

代码:

1 #include
2 #include
3 using namespace std; 4 int main() { 5 int n,m; 6 cin>>n; 7 for(int i=0; i
>m;12 for(int j=0; j
>a[j];14 if(a[j]%3==0) {15 cnt++;16 } else {17 a[j]%=3;18 b[cnt1++]=a[j];19 }20 }21 for(int i=0; i
b1) {30 int h=a1-b1;31 if(h>=3) {32 cnt+=h/3;33 }34 cnt+=b1;35 } else {36 int h=b1-a1;37 if(h>=3) {38 cnt+=h/3;39 }40 cnt+=a1;41 }42 cout<
<

思路分析:若本身可整除3就加1,将不可整除3的数模3,都转化成1和2,比较1和2的数量,1比2多那就配对2数量个3,然后看1比2多了几个,如果超过3,看有多少个3,再记数。

链接:

转载于:https://www.cnblogs.com/yuanhang110/p/11267914.html

你可能感兴趣的文章
DataTable和 DataRow的 区别与联系
查看>>
检索COM 类工厂中CLSID 为 {00024500-0000-0000-C000-000000000046}的组件时失败
查看>>
mysql数据库中数据类型
查看>>
Fireworks基本使用
查看>>
两台电脑间的消息传输
查看>>
Linux 标准 I/O 库
查看>>
.net Tuple特性
查看>>
Java基础常见英语词汇
查看>>
iOS并发编程笔记【转】
查看>>
08号团队-团队任务5:项目总结会
查看>>
SQL2005 删除空白行null
查看>>
mysql备份与恢复
查看>>
混沌分形之迭代函数系统(IFS)
查看>>
边框圆角Css
查看>>
使用Busybox制作根文件系统
查看>>
jpg图片在IE6、IE7和IE8下不显示解决办法
查看>>
delphi之模糊找图
查看>>
Javascript模块化编程的写法
查看>>
大华门禁SDK二次开发(二)-SignalR应用
查看>>
oracle 使用job定时自动重置sequence
查看>>