Codeforces - 1104B. Game with string(思维 | 模拟)

发布于 2024-04-04 20:11:54 字数 2593 浏览 17 评论 0

题目

解析

直接用字符串模拟(利用 substring 截取) 会超时,要灵活运用下标的变化来模拟:

  • 可以用一个 cnt 变量累计消去的回合,如果消去奇数回合, A 赢,否则 B 赢;
  • 利用一个 chs 数组和 pos 下标, chs[pos-1]chs 数组的最后一个元素;
  • 每次检查 str.charAt(i) == chs[pos-1] ,如果 true ,就说明可以消去(当前玩家这回合不会输);
  • 然后当不相等的时候,就将 str.charAt(i) 放入 chs 数组,并累加 pos 即可;

import java.io.*;
import java.util.*;

public class Main {

    public static void main(String[] args){
        Scanner in = new Scanner(new BufferedInputStream(System.in));
        PrintStream out = System.out;
        String str = in.next();
        char[] chs = new char[str.length()];
        int cnt = 0, pos = 0; 
        for(int i = 0; i < str.length(); i++){ 
            char c = str.charAt(i);
            if(pos == 0)
                chs[pos++] = c;
            else { 
                if(c == chs[pos - 1]){ 
                    cnt++;
                    pos--;
                }else { 
                    chs[pos++] = c;
                }
            }
        }
        out.println( cnt % 2 == 0 ? "NO" : "YES");
    }
}

超时代码:

import java.io.*;
import java.util.*;

public class Main {

    public static void main(String[] args){
        Scanner in = new Scanner(new BufferedInputStream(System.in));
        PrintStream out = System.out;
        String str = in.next();

        boolean first = true;
        while(str != ""){
            boolean ok = false;
            for(int i = 1; i < str.length(); i++){
                if(str.charAt(i) == str.charAt(i-1)){
                    ok = true;
                    str = str.substring(0, i-1) + str.substring(i+1);
                    break;
                }
            }
            if(!ok && !first){
                out.println("YES");
                break;
            }
            if(!ok && first){
                out.println("NO");
                break;
            }
            first = !first;
        }
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

屋檐

暂无简介

0 文章
0 评论
23 人气
更多

推荐作者

玍銹的英雄夢

文章 0 评论 0

我不会写诗

文章 0 评论 0

十六岁半

文章 0 评论 0

浸婚纱

文章 0 评论 0

qq_kJ6XkX

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文