计算C ++中所有大小为2或3且总和为3的倍数的组
在本教程中,我们将讨论一个程序,以查找大小为2或3且总和为3的倍数的组的数量。
在本教程中,我们将讨论一个程序,以查找大小为2或3且总和为3的倍数的组的数量。
示例
#include<bits/stdc++.h>
using namespace std;
//返回对数
//2或3-
int count_groups(int arr[], int n){
int c[3] = {0}, i;
int res = 0;
for (i=0; i<n; i++)
c[arr[i]%3]++;
res += ((c[0]*(c[0]-1))>>1);
res += c[1] * c[2];
res += (c[0] * (c[0]-1) * (c[0]-2))/6;
res += (c[1] * (c[1]-1) * (c[1]-2))/6;
res += ((c[2]*(c[2]-1)*(c[2]-2))/6);
res += c[0]*c[1]*c[2];
return res;
}
int main(){
int arr[] = {3, 6, 7, 2, 9};
int n = sizeof(arr)/sizeof(arr[0]);
cout << "Required number of groups are " << count_groups(arr,n) << endl;
return 0;
}输出结果
Required number of groups are 8
热门推荐
10 诗词送行祝福语大全简短
11 新房开工吉日祝福语简短
12 50多岁生日简短祝福语
13 安徽疫情祝福语简短英语
14 农民朋友发财祝福语简短
15 对生活祝福语简短精辟
16 搬家词简短祝福语朋友
17 女神结婚快乐祝福语简短
18 文学短句祝福语大全简短