【题解】codeforces1029F[Codeforces Round #506 (Div. 3)]F.Multicolored Markers set

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

题目链接

Description

There is an infinite board of square tiles. Initially all tiles are white.

Vova has a red marker and a blue marker. Red marker can color a a a tiles. Blue marker can color b b b tiles. If some tile isn’t white then you can’t use marker of any color on it. Each marker must be drained completely, so at the end there should be exactly a a a red tiles and exactly b b b blue tiles across the board.

Vova wants to color such a set of tiles that:

they would form a rectangle, consisting of exactly a + b a+b a+b colored tiles;
all tiles of at least one color would also form a rectangle.
Here are some examples of correct colorings:
在这里插入图片描述

Here are some examples of incorrect colorings:

在这里插入图片描述
Among all correct colorings Vova wants to choose the one with the minimal perimeter. What is the minimal perimeter Vova can obtain?

It is guaranteed that there exists at least one correct coloring.

Input

A single line contains two integers a a a and b b b ( 1 ≤ a , b ≤ 1 0 14 ) (1≤a,b≤10^{14}) (1a,b1014) — the number of tiles red marker should color and the number of tiles blue marker should color, respectively.

Output

Print a single integer — the minimal perimeter of a colored rectangle Vova can obtain by coloring exactly a a a tiles red and exactly b b b tiles blue.

It is guaranteed that there exists at least one correct coloring.

Examples

Input

4 4

Output

12

Input

3 9

Output

14

Input

9 3

Output

14

Input

3 6

Output

12

Input

506 2708

Output

3218

Note

The first four examples correspond to the first picture of the statement.

Note that for there exist multiple correct colorings for all of the examples.

In the first example you can also make a rectangle with sides 1 1 1 and 8 8 8, though its perimeter will be 18 18 18 which is greater than 8 8 8.

In the second example you can make the same resulting rectangle with sides 3 3 3 and 44$, but red tiles will form the rectangle with sides 1 1 1 and 3 3 3 and blue tiles will form the rectangle with sides 3 3 3 and 3 3 3.


参考了大佬题解
显然边长必须得整除面积(废话),能够想到把能整除 a a a b b b 的边长都存上,然后碰到能整除 a + b a+b a+b 的边长就查找是否存在。但是这样错了,参考了大佬的题解后想明白了,不一定要刚好存在,长度可以包含最小的能整除 a a a b b b 的边长就可以了。

#include<cstdio>
#include<set>
using namespace std;
typedef long long ll;
ll a,b,ans=1e18;
set<ll>s;
int main()
{
    scanf("%lld%lld",&a,&b);
    for(ll len=1;len*len<=a+b;len++)
    {
    	if(a%len==0)s.insert(a/len);
    	if(b%len==0)s.insert(b/len);
		if((a+b)%len==0&&*s.begin()<=(a+b)/len)ans=min(ans,len+(a+b)/len);
	}
	printf("%lld\n",ans*2);
	return 0;
}

总结

审题不仔细,写的时候没有想到可以不是刚好整除 a a a b b b 而是包含能整除 a a a b b b 的最小边长。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Codeforces Round 894 (Div. 3) 是一个Codeforces举办的比赛,是第894轮的Div. 3级别比赛。它包含了一系列题目,其中包括题目E. Kolya and Movie Theatre。 根据题目描述,E. Kolya and Movie Theatre问题要求我们给定两个字符串,通过三种操作来让字符串a等于字符串b。这三种操作分别为:交换a中相同位置的字符、交换a中对称位置的字符、交换b中对称位置的字符。我们需要先进行一次预处理,替换a中的字符,然后进行上述三种操作,最终得到a等于b的结果。我们需要计算预处理操作的次数。 根据引用的讨论,当且仅当b[i]==b[n-i-1]时,如果a[i]!=a[n-i-1],需要进行一次操作;否则不需要操作。所以我们可以遍历字符串b的前半部分,判断对应位置的字符是否与后半部分对称,并统计需要进行操作的次数。 以上就是Codeforces Round 894 (Div. 3)的简要说明和题目E. Kolya and Movie Theatre的要求。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* [Codeforces Round #498 (Div. 3) (A+B+C+D+E+F)](https://blog.csdn.net/qq_46030630/article/details/108804114)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *3* [Codeforces Round 894 (Div. 3)A~E题解](https://blog.csdn.net/gyeolhada/article/details/132491891)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值