首页 > 其他 > 详细

[ AGC002 E ] Candy Piles

时间:2021-04-29 22:41:18      阅读:20      评论:0      收藏:0      [点我收藏+]

题目

Atcoder

思路

技术分享图片
技术分享图片

代码

#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
const int N = 100010;
int n, m, a[N];
int main() {
	cin >> n;
	for (int i = 1; i <= n; i++) cin >> a[i];
	sort(a + 1, a + n + 1), reverse(a + 1, a + n + 1);
	int t = 0;
	for (int i = 1; i <= n && !t; i++)
		if (i + 1 > a[i + 1]) t = i; // 下一条已经不合法, 当前位置就是对角线终点
	int x = a[t] - t, y = 0;
	while (a[t + y + 1] >= t) y++;
	if ((x & 1) || (y & 1)) cout << "First" << endl;
	else cout << "Second" << endl;
	return 0;
}

[ AGC002 E ] Candy Piles

原文:https://www.cnblogs.com/Proteinlzl/p/14719270.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!