A. Dreamoon and Stairs1000 / 暴力

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Dreamoon and Stairs1000 / 暴力相关的知识,希望对你有一定的参考价值。


https://codeforces.com/problemset/problem/476/A

#include<bits/stdc++.h>
using namespace std;
int ans=1e9;
int main(void)
{
	int n,m; cin>>n>>m;
	for(int i=0;i<=10000;i++)
	{
		for(int j=0;2*j<=n;j++)
		{
			int sum=i+j*2;
			if(sum&&(i+j)%m==0&&sum==n) 
			{
				if(i+j<ans)
				{
					ans=i+j;
				} 
			}
		}
	}
	if(ans==1e9) cout<<-1;
	else cout<<ans;
}

以上是关于A. Dreamoon and Stairs1000 / 暴力的主要内容,如果未能解决你的问题,请参考以下文章

CF A. Dreamoon and Ranking Collection

Dreamoon and MRT(二元枚举)

B. Dreamoon and WiFi1300 / 简单爆搜

Codeforces Gym101234G Dreamoon and NightMarket(优先队列,子集和第k大)

[题解]Mail.Ru Cup 2018 Round 1 - A. Elevator or Stairs?

Dreamoon-Operating on a graph(并查集+链表)