B. M-arrays

B. M-arrays-708div2-B

题目

B. M-arrays
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
You are given an array a1,a2,…,an
consisting of n positive integers and a positive integer m
.
You should divide elements of this array into some arrays. You can order the elements in the new arrays as you want.
Let’s call an array m
-divisible if for each two adjacent numbers in the array (two numbers on the positions i and i+1 are called adjacent for each i) their sum is divisible by m. An array of one element is m
-divisible.
Find the smallest number of m
-divisible arrays that a1,a2,…,an
is possible to divide into.
Input
The first line contains a single integer t
(1≤t≤1000)
— the number of test cases.
The first line of each test case contains two integers n
, m (1≤n≤105,1≤m≤105)
.
The second line of each test case contains n
integers a1,a2,…,an (1≤ai≤109)
.
It is guaranteed that the sum of n
and the sum of m over all test cases do not exceed 105
.
Output
For each test case print the answer to the problem.
Example
Input
Copy
4
6 4
2 2 8 6 9 4
10 8
1 1 1 5 2 4 4 8 6 7
1 1
666
2 2
2 4
Output
Copy
3
6
1
1
Note
In the first test case we can divide the elements as follows:
[4,8]
. It is a 4-divisible array because 4+8 is divisible by 4
.
[2,6,2]
. It is a 4-divisible array because 2+6 and 6+2 are divisible by 4
.
[9]
. It is a 4-divisible array because it consists of one element.

题意&&思路

就是给你n个数,问你按照要求最少分成几个数组;要求:要么数组中只有一个数,要么数组中的相邻的两个数两两加和能被m整除。

这个题利用余数做,把除m后余数为x的和余数m-x的放到一个数组中,然后把多余的单独放到一个数组中即可。

代码

#include <bits/stdc++.h>
#define ll long long
using namespace std;
int arr[100010];
int main()
{
    int t, n, m, x;
    cin>>t;
    while (t--)
    {
        int sum = 0;
        memset(arr, 0, sizeof(arr));
        cin>>n>>m;
        for (int i = 0; i < n; i++)
        {
            cin>>x;
            arr[x % m]++;
        }
        if (arr[0] != 0)
            sum++;
        for (int i = 1; i <= m / 2; i++)
        {
            if (arr[i] != 0 && arr[i] == arr[m - i])
                sum++;
            else
                sum += abs(arr[i] - arr[m - i]);
        }
        cout<<sum<<endl;
    }
    return 0;
}

  • 7
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 6
    评论
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值