C. Raspberries

news/2024/12/5 1:57:25/

time limit per test

2 seconds

memory limit per test

256 megabytes

You are given an array of integers a1,a2,…,ana1,a2,…,an and a number kk (2≤k≤52≤k≤5). In one operation, you can do the following:

  • Choose an index 1≤i≤n1≤i≤n,
  • Set ai=ai+1ai=ai+1.

Find the minimum number of operations needed to make the product of all the numbers in the array a1⋅a2⋅…⋅ana1⋅a2⋅…⋅an divisible by kk.

Input

Each test consists of multiple test cases. The first line contains a single integer tt (1≤t≤1041≤t≤104) — the number of test cases. Then follows the description of the test cases.

The first line of each test case contains two integers nn and kk (2≤n≤1052≤n≤105, 2≤k≤52≤k≤5) — the size of the array aa and the number kk.

The second line of each test case contains nn integers a1,a2,…,ana1,a2,…,an (1≤ai≤101≤ai≤10).

It is guaranteed that the sum of nn over all test cases does not exceed 2⋅1052⋅105.

Output

For each test case, output the minimum number of operations needed to make the product of all the numbers in the array divisible by kk.

Example

Input

Copy

 

15

2 5

7 3

3 3

7 4 1

5 2

9 7 7 3 9

5 5

5 4 1 2 3

7 4

9 5 1 5 9 5 1

3 4

6 3 6

3 4

6 1 5

3 4

1 5 9

4 4

1 4 1 1

3 4

3 5 3

4 5

8 9 9 3

2 5

1 6

2 5

10 10

4 5

1 6 1 1

2 5

7 7

Output

Copy

2
2
1
0
2
0
1
2
0
1
1
4
0
4
3

Note

In the first test case, we need to choose the index i=2i=2 twice. After that, the array will be a=[7,5]a=[7,5]. The product of all the numbers in the array is 3535.

In the fourth test case, the product of the numbers in the array is 120120, which is already divisible by 55, so no operations are needed.

In the eighth test case, we can perform two operations by choosing i=2i=2 and i=3i=3 in any order. After that, the array will be a=[1,6,10]a=[1,6,10]. The product of the numbers in the array is 6060.

解题说明:此题是一道数学题,由于K范围很小,可以分类讨论。当k=4的时候存在给两个数都加1的情况,其他情况下的k都只可以给一个数一直加1直到这个数可以整除k。

#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
const int INF = 0x3f3f3f3f;
int main()
{int T; cin >> T;while (T--){int n, k; cin >> n >> k;int a[100004];int ans = INF;int cal = 1;for (int i = 1; i <= n; i++){cin >> a[i];cal *= a[i];if (a[i] % k == 0) {ans = 0;}int t = a[i] / k + 1;ans = min(ans, t * k - a[i]);}if (k == 4){int cnt1 = 0, cnt2 = 0;for (int i = 1; i <= n; i++){switch (a[i] % 4){case 1:cnt1++;break;case 2:cnt2++;break;case 3:break;default:ans = 0;break;}}if (cnt1 >= 2){ans = min((int)2, ans);}if (cnt2 >= 2){ans = 0;}if (cnt1 >= 1 && cnt2 >= 1){ans = min((int)1, ans);}}cout << ans << endl;}return 0;
}


http://www.ppmy.cn/news/1552435.html

相关文章

【k8s】kubelet 的相关证书

在 Kubernetes 集群中&#xff0c;kubelet 使用的证书通常存放在节点上的特定目录。这些证书用于 kubelet 与 API 服务器之间的安全通信。具体的位置可能会根据你的 Kubernetes 安装方式和配置有所不同&#xff0c;下图是我自己环境【通过 kubeadm 安装的集群】中的kubelet的证…

单台服务器上创建多个端口MySQL服务

单台服务器上创建多个端口MySQL服务 直接拷贝已经运行的数据库文件: # ll /data/mysql/ 总用量 204 drwxr-x--- 2 mysql mysql 4096 9月 15 2023 bin -rw-r--r-- 1 mysql mysql

ubuntu查看本地镜像源可用的deb包

在Ubuntu系统中&#xff0c;查看本地镜像源可用的deb包可以通过以下几种方法实现&#xff1a; 方法一&#xff1a;使用apt-cache命令 apt-cache命令可以用来查询本地和远程的软件包信息。你可以使用以下命令来查看本地镜像源可用的deb包&#xff1a; apt-cache search .这个…

Android 使用OpenGLES + MediaPlayer 获取视频截图

概述 Android 获取视频缩略图的方法通常有: ContentResolver: 使用系统数据库MediaMetadataRetriever: 这个是android提供的类&#xff0c;用来获取本地和网络media相关文件的信息ThumbnailUtils: 是在android2.2&#xff08;api8&#xff09;之后新增的一个&#xff0c;该类为…

《智能体雏形开发(高阶实操)》开发计划概述

智能体雏形开发计划 通过本计划,逐步完成一个可以真实运行的智能体雏形。 最终完成一个**“用户日志文件生成日报,日报再进一步汇总成周报”**的任务驱动型智能体雏形 第一阶段:基础准备与环境搭建 1. 学习基础知识 了解智能体的概念、类型和技术框架。学习大模型(如阿里…

【C++】数组

1.概述 所谓数组&#xff0c;就是一个集合&#xff0c;该集合里面存放了相同类型的数据元素。 数组特点&#xff1a; &#xff08;1&#xff09;数组中的每个数据元素都是相同的数据类型。 &#xff08;2&#xff09;数组是有连续的内存空间组成的。 2、一维数组 2.1维数组定…

java 网络编程 详解

Java 网络编程主要涉及使用 Java 中的套接字&#xff08;Sockets&#xff09;和服务器套接字&#xff08;ServerSockets&#xff09;来实现网络通信。这种方式可以使不同主机上运行的应用程序之间进行数据交换。以下是 Java 网络编程的几个关键概念和组件的详解&#xff1a; 1…

黑马2024AI+JavaWeb开发入门Day02-JS-VUE飞书作业

视频地址&#xff1a;哔哩哔哩 讲义作业飞书地址&#xff1a;飞书 一、作业1 <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><meta http-equiv"X-UA-Compatible" content"IEedge">&l…