博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CF 322A Ciel and Dancing 好简单的题。。最喜欢水题了
阅读量:4963 次
发布时间:2019-06-12

本文共 1783 字,大约阅读时间需要 5 分钟。

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
21 12 1
input
2 2
output
31 11 22 2
Note

In test case 1, there are 2 boys and 1 girl. We can have 2 dances: the 1st boy and 1st girl (during the first song), the 2nd boy and 1st girl (during the second song).

And in test case 2, we have 2 boys with 2 girls, the answer is 3.

题目意思是跳舞的满足2个条件,要么男的是第一次,要么女的是第一次。那答案很显然就是 n+m-1。 

n+m-1
1 1
1 2
1 3
...
1 m
2 1
3 1
...
n 1

 

/* * @author ipqhjjybj * @date  20130711 * */#include 
#include
int main(){ int n,m; scanf("%d %d",&n,&m); printf("%d\n",n+m-1); for(int i = 1;i<=m;i++){ printf("1 %d\n",i); } for(int i = 2;i<=n;i++){ printf("%d 1\n",i); } return 0;}

 

 

转载于:https://www.cnblogs.com/jiangu66/p/3187034.html

你可能感兴趣的文章
PHP数据类型转换
查看>>
Promise深入浅出之个人拙见
查看>>
GlusterFS群集存储项目
查看>>
Maven的POM简单理解
查看>>
Jenkins中的Job配置里缺少“触发远程构建(例如,使用脚本)”选项的问题解决...
查看>>
GitLab修改时区
查看>>
翻译: Clustered Index Design Considerations 聚集索引设计注意事项
查看>>
Laravel Session保存机制和terminate中间件
查看>>
org.apache.catalina.util.DefaultAnnotationProcessor cannot be cast to org.ap解决方案
查看>>
以checked选中作为判断条件的各种写法
查看>>
Linux ln命令 - 建立文件/目录链接
查看>>
Httpservletrequest
查看>>
Jquery.ajax报parseerror Invalid JSON错误的原因和解决方法:不能解析
查看>>
杭电2602 Bone Collector
查看>>
数据库连接池的工作原理
查看>>
关于"××××程序集清单定义与程序集引用不匹配"问题的解决
查看>>
Unix和Linux的区别和联系
查看>>
计算机基础 python入门
查看>>
数据库那些事
查看>>
20150423 提问2
查看>>