当前位置: 代码迷 >> 综合 >> 构造 ACdream1408 Money, Money, Money
  详细解决方案

构造 ACdream1408 Money, Money, Money

热度:69   发布时间:2023-12-14 03:51:57.0

传送门:点击打开链接

题意:输入一个x,要求找到一对a和b,使得a和b能组成所有>x的数字,却不能组成等于x的数字

思路:一道非常让人无语的构造题,如果想到了就会觉得特别蠢。。

如果a等于2,那么b就一定要是奇数才行。然后想到不能等于x,如果b<=x那么x是肯定可以被表示出来的,所以要找到第一个>x的奇数,来当作b

此时因为a是2,所以和b组合在一起,就能表示出所有>=b的数字了,,没错,,做完了 T^T

#include<map>
#include<set>
#include<cmath>
#include<stack>
#include<queue>
#include<cstdio>
#include<string>
#include<vector>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<functional>
#define FIN freopen("input.txt","r",stdin)
using namespace std;
typedef long long LL;
typedef pair<int, int>PII;int main() {LL n;while(~scanf("%lld", &n)) {if(n % 2 == 0) printf("0 0\n");else {printf("2 %lld\n", n + 2);}}return 0;
}