链接:

https://codeforces.com/contest/1220/problem/C

题意:

Mike and Ann are sitting in the classroom. The lesson is boring, so they decided to play an interesting game. Fortunately, all they need to play this game is a string s and a number k (0≤k<|s|).

At the beginning of the game, players are given a substring of s with left border l and right border r, both equal to k (i.e. initially l=r=k). Then players start to make moves one by one, according to the following rules:

A player chooses l′ and r′ so that l′≤l, r′≥r and s[l′,r′] is lexicographically less than s[l,r]. Then the player changes l and r in this way: l:=l′, r:=r′.

Ann moves first.

The player, that can't make a move loses.

Recall that a substring s[l,r] (l≤r) of a string s is a continuous segment of letters from s that starts at position l and ends at position r. For example, "ehn" is a substring (s[3,5]) of "aaaehnsvz" and "ahz" is not.

Mike and Ann were playing so enthusiastically that they did not notice the teacher approached them. Surprisingly, the teacher didn't scold them, instead of that he said, that he can figure out the winner of the game before it starts, even if he knows only s and k.

Unfortunately, Mike and Ann are not so keen in the game theory, so they ask you to write a program, that takes s and determines the winner for all possible k.

思路:

将l'扩展到右边最小的位置, 就可以保证下一次没有操作余地.

同时l的左边没有更小的就输了.

代码:

#include <bits/stdc++.h>
using namespace std;
const int MAXN = 5e5+10; char s[MAXN]; int main()
{
cin >> s;
int len = strlen(s);
int minv = 25;
for (int i = 0;i < len;i++)
{
if (s[i]-'a' > minv)
puts("Ann");
else
puts("Mike");
if (s[i]-'a' < minv)
minv = s[i]-'a';
} return 0;
}

最新文章

  1. C# 京东模拟登录小结
  2. TYVJ博弈论
  3. PHP基础笔记汇总
  4. [Doc ID 433386.1]JSP Pages Hanging in R12 After Removing Cached Class Files in _pages
  5. json前后台传值
  6. poj3693之后缀数组
  7. 四:redis的sets类型 - 相关操作(有序和无序集合)
  8. js常用API 数据类型 基本类型,基本包装类型,引用类型 Object String Array Boolean Number Date Math
  9. Spring 具名参数NamedParameterJdbcTemplate
  10. Eclipse调试(1)——基础篇
  11. Istio 是什么?
  12. 【vue】vue全家桶
  13. android studio 汉化
  14. [skill] 补码
  15. C链表的简单案例
  16. Oracle FND API&ndash;Create User
  17. [Elixir001]使用tty做一个简单的日记记录
  18. hbase集群配置
  19. 20145240 《Java程序设计》第三次实验报告
  20. PostgreSQL的日志文件介绍

热门文章

  1. 大数据学习笔记【一】:Hadoop-3.1.2完全分布式环境搭建(Windows 10)
  2. Prime Number(CodeForces-359C)【快速幂/思维】
  3. 【AC自动机】Censoring
  4. 怎样初始化XMLHttpRequest实例对象xhr
  5. StoneTab标签页CAD插件 3.2.3
  6. dotnet跨平台 - 使用Nginx+Docker Compose运行.NETCore项目
  7. luogu4777[模板]拓展中国剩余定理题解
  8. pthread 编程基础
  9. CSP-S2019「Symphony」
  10. cmder 增强型命令行工具