【题解】codeforces1047D[Codeforces Round #511 (Div. 2)]D.Little C Loves 3 II 数学知识

32 篇文章 0 订阅
32 篇文章 0 订阅

题目链接

Description

Little C loves number «3» very much. He loves all things about it.

Now he is playing a game on a chessboard of size n×m. The cell in the x-th row and in the y-th column is called (x,y). Initially, The chessboard is empty. Each time, he places two chessmen on two different empty cells, the Manhattan distance between which is exactly 3. The Manhattan distance between two cells (xi,yi) and (xj,yj) is defined as |xi−xj|+|yi−yj|.

He want to place as many chessmen as possible on the chessboard. Please help him find the maximum number of chessmen he can place.

Input

A single line contains two integers n and m (1≤n,m≤109) — the number of rows and the number of columns of the chessboard.

Output

Print one integer — the maximum number of chessmen Little C can place.

Examples

Input

2 2

Output

0

Input

3 3

Output

8

Note

In the first example, the Manhattan distance between any two cells is smaller than 3, so the answer is 0.

In the second example, a possible solution is (1,1)(3,2), (1,2)(3,3), (2,1)(1,3), (3,1)(2,3).


在这里插入图片描述

#include<cstdio>
#include<algorithm>
using namespace std;
int main()
{
	int n,m;
	scanf("%d%d",&n,&m);
	if(n>m)swap(n,m);
	if(n==1)printf("%d\n",m/6*6+2*max(m%6-3,0));
	else if(n==2)printf("%d\n",m==2?0:m==3?4:m==7?12:m*2);
	else printf("%lld\n",1ll*n*m/2*2);
	return 0;
}

总结

很巧妙的构造小的情况,再数学归纳法归纳出通解。拿到这题我也尝试画图找规律,找半天屁都没找出来。所以找规律也需要方法,先考虑很小的情况,再通过小情况推导出大范围的解。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值