cf 190div 2 A

在Cieland的舞蹈室中,男女从未共舞过。面对有限的歌曲数量,需要制定一套规则使得他们能尽可能多地跳舞。通过简单的逻辑判断,找出最佳的配对方式。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

A. Ciel and Dancing
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Fox Ciel and her friends are in a dancing room. There are n boys and m girls here, and they never danced before. There will be some songs, during each song, there must be exactly one boy and one girl are dancing. Besides, there is a special rule:

  • either the boy in the dancing pair must dance for the first time (so, he didn't dance with anyone before);
  • or the girl in the dancing pair must dance for the first time.

Help Fox Ciel to make a schedule that they can dance as many songs as possible.

Input

The first line contains two integers n and m (1 ≤ n, m ≤ 100) — the number of boys and girls in the dancing room.

Output

In the first line print k — the number of songs during which they can dance. Then in the following k lines, print the indexes of boys and girls dancing during songs chronologically. You can assume that the boys are indexed from 1 to n, and the girls are indexed from 1 to m.

Sample test(s)
input
2 1
output
2
1 1
2 1
input
2 2
output
3
1 1
1 2
2 2
刚开始看到这个题的时候表示吓到了,因为是贪心,后来仔细一看,压根不需要,就是找个规律即可,下面是代码:

#include <string>
#include <cstring>
#include <vector>
#include <cassert>
#include <cstdio>
#include <cstdlib>
#include <iostream>

using namespace std;

int main(){
    int  n,m;
    cin>>n>>m;
    cout<<n+m-1<<endl;
    for(int i=1;i<=n;i++)
       cout<<i<<" "<<"1"<<endl;
    for(int i=2;i<=m;i++)
       cout<<"1"<<" "<<i<<endl;
       return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值