【codechef】Chef and A Large Permutation(技巧题)

Today is Chef's birthday. His mom gifted him a truly lovable gift, a permutation of first N positive integers.

She placed the permutation on a very long table in front of Chef and left it for him to play with it. But as there was a lot of people coming and wishing him. It was interfering with his game which made him very angry and he banged the table very hard due to which K numbers from the permutation fell down and went missing.

Seeing her son's gift being spoilt, his mom became very sad. Chef didn't want his mom to be sad as he loves her the most. So to make her happy, he decided to play a game with her with the remaining N - Knumbers on the table. Chef wants his mom to win all the games.

Chef and his mom play alternatively and optimally. In Xth move, a player can choose some numbers out of all the numbers available on the table such that chosen numbers sum up to X. After the move, Chosen numbers are placed back on the table.The player who is not able to make a move loses.

Now, Chef has to decide who should move first so that his Mom wins the game.

As Chef is a small child, he needs your help to decide who should move first. Please help him, he has promised to share his birthday cake with you :)

Input

  • First Line of input contains a single integer T denoting the number of test cases.
  • First line of each test case contains two space separated integers N and K denoting the size of
    permutation and number of numbers fall down from the table.
  • Next line of each test case contains K space separated integers denoting the values of missing numbers.

Output

For each test case, print "Chef" if chef should move first otherwise print "Mom" (without quotes).

Constraints

  • 1 ≤ T ≤ 105, 1 ≤ N ≤ 109
  • 0 ≤ K ≤ min(105, N)
  • All K numbers are distinct.
  • Value of each of K number belongs to [1,N].
  • Sum of K over all the test cases does not exceed 5*105.

Scoring

  • Subtask 1 (13 pts): 1 ≤ T ≤ 100, 1 ≤ N ≤ 102, 1 ≤ K < N.
  • Subtask 2 (17 pts): 1 ≤ T ≤ 100, 1 ≤ N ≤ 105, K = 0.
  • Subtask 3 (70 pts): Original Constraints.

Example

Input
2
5 2
3 5
5 1
1
Output
Mom
Chef

Explanation

For test case 1.

  • Mom can choose {1} to make 1.
  • Chef can choose {2} to make 2.
  • Mom can choose {1,2} to make 3.
  • Chef can choose {4} to make 4.
  • Mom can choose {1,4} to make 5.
  • Chef can choose {2,4} to make 6.
  • Mom can choose {1,2,4} to make 7.
  • Chef cannot make 8 out of the numbers on the table.

So,Chef loses and Mom wins.

http://www.codechef.com/problems/CLPERM

#include<iostream>
#include<algorithm>
#include<string>
#include<map>
#include<vector>
#include<cmath>
#include<string.h>
#include<stdlib.h>
#include<cstdio>
#include <ctime>
#include <cstdlib> 
#define ll long long
#define mod 998244353
using namespace std; 
ll x[10000001];
int main(){
	int t;
	cin>>t;
	while(t--){
		ll n,m,a;
		cin>>n>>m;
		for(int i=0;i<m;++i)
			cin>>x[i];
		sort(x,x+m);
		ll p=0,s=0,u=0;
		for(int i=0;i<m;++i){
			p+=x[i];
			s=x[i]*(x[i]+1)/2-p; //最大能到达的数=总和-所有前面不出现的数字
			if(x[i]>s){
				s=x[i]-1;
				u=1;
				break;
			}
		}
		if(u==0)
			s=n*(n+1)/2-p;
		if(s%2==0)
			cout<<"Chef"<<endl;
		else 
			cout<<"Mom"<<endl;
	}
	return 0;
}


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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值