题目链接
Nowadays, the Kingdom of Dreamgrid is suffering from a national pandemic. Fortunately, president Baobao is working effectively with the Center for Disease Control (CDC) and they are trying their best to make everything under control.
President Baobao has received n × m n \times m n×m medical masks from his friend Reku, an extremely rich billionaire. As the chief of the CDC, you are required to allocate these masks properly. There are 2 kinds of hospitals in the Kingdom of Dreamgrid, n senior hospitals for critically ill patients and m mobile cabin hospitals for patients with mild symptoms.
Before allocating them to hospitals, you have to pack them into boxes. Please note that boxes must not be opened in order to prevent contamination and you only know these boxes will be allocated to either senior hospitals or mobile cabin hospitals. That is to say, there should be a way of dividing masks boxes into m groups of n masks, and a way of dividing into n groups of m masks.
You want the number of boxes to be minimal and please also provide a lexicographically greatest sequence of the numbers of masks in boxes. We say a sequence a is lexicographically greater than another b of the same length if there exists an integer i, such that
There are multiple test cases. The first line of the input contains an integer T ( 1 ≤ T ≤ 100 ) T (1 \leq T \leq 100) T(1≤T≤100), indicating the number of test cases.
For each test case, the only line of the input contains two integers n , m ( 1 ≤ n , m ≤ 1 0 4 ) n,m (1 \leq n,m \leq 10^4) n,m(1≤n,m≤104), representing the numbers of senior hospitals and mobile cabin hospitals.
For each test case, please output two lines. The first line should contain a single integer k in the first line, indicating the minimum number of boxes. In the second line, please output k integers, denoting the lexicographically greatest sequence.
2
5 4
3 3
8
4 4 4 4 1 1 1 1
3
3 3 3
思维题~
题意比较难,看懂了就简单了,就是将 n ∗ m n*m n∗m 个口罩分成 k k k 份,使得可以从中挑出 n n n 组,每组口罩数一样多;也可以从中挑出 m m m 组,每组口罩一样多,最后输出的字典序要最大~
不难发现,若 n > m n>m n>m,每次向答案中加入的就是 ( n / m ) ∗ m (n/m)*m (n/m)∗m 个 m m m,然后再对 ( n % m , m ) (n\%m,m) (n%m,m) 进行分组,类似于求最大公因数,我们跑一个 DFS 即可,当 m = 0 m=0 m=0 时,递推结束,输出答案即可,AC代码如下:
#include
typedef long long ll;
using namespace std;
vector<int>ans;
void solve(int n,int m){
if(m==0) return;
for(int i=0;i<(n/m)*m;i++) ans.push_back(m);
solve(max((n%m),m),min((n%m),m));
}
int main()
{
int t,n,m;
scanf("%d",&t);
while(t--){
scanf("%d%d",&n,&m);
ans.clear();
solve(max(n,m),min(n,m));
printf("%d\n",ans.size());
for(auto i:ans) printf("%d ",i);
printf("\n");
}
return 0;
}