結果

問題 No.1924 3 color painting on a line
ユーザー tentententen
提出日時 2024-08-19 11:18:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 2,023 bytes
コンパイル時間 4,470 ms
コンパイル使用メモリ 78,848 KB
実行使用メモリ 52,148 KB
最終ジャッジ日時 2024-08-19 11:18:44
合計ジャッジ時間 10,928 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
49,904 KB
testcase_01 AC 43 ms
50,020 KB
testcase_02 AC 43 ms
50,308 KB
testcase_03 AC 88 ms
51,760 KB
testcase_04 AC 95 ms
51,896 KB
testcase_05 AC 96 ms
51,852 KB
testcase_06 AC 94 ms
51,952 KB
testcase_07 AC 96 ms
51,916 KB
testcase_08 AC 93 ms
52,144 KB
testcase_09 AC 108 ms
51,864 KB
testcase_10 AC 88 ms
51,884 KB
testcase_11 AC 93 ms
52,136 KB
testcase_12 AC 108 ms
51,856 KB
testcase_13 AC 99 ms
51,908 KB
testcase_14 AC 96 ms
51,992 KB
testcase_15 AC 97 ms
52,040 KB
testcase_16 AC 94 ms
52,092 KB
testcase_17 AC 97 ms
51,856 KB
testcase_18 AC 94 ms
52,036 KB
testcase_19 AC 96 ms
52,148 KB
testcase_20 AC 110 ms
52,100 KB
testcase_21 AC 97 ms
52,064 KB
testcase_22 AC 96 ms
51,940 KB
testcase_23 AC 68 ms
50,712 KB
testcase_24 AC 86 ms
51,852 KB
testcase_25 AC 82 ms
51,484 KB
testcase_26 AC 54 ms
50,360 KB
testcase_27 AC 77 ms
51,040 KB
testcase_28 AC 67 ms
50,908 KB
testcase_29 AC 71 ms
50,900 KB
testcase_30 AC 70 ms
50,712 KB
testcase_31 AC 71 ms
50,948 KB
testcase_32 AC 83 ms
51,692 KB
testcase_33 AC 81 ms
51,760 KB
testcase_34 AC 99 ms
51,540 KB
testcase_35 AC 83 ms
51,760 KB
testcase_36 AC 73 ms
50,692 KB
testcase_37 AC 72 ms
50,756 KB
testcase_38 AC 79 ms
51,624 KB
testcase_39 AC 58 ms
50,444 KB
testcase_40 AC 44 ms
50,292 KB
testcase_41 AC 69 ms
50,852 KB
testcase_42 AC 93 ms
51,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        Deque<Character> deq = new ArrayDeque<>();
        int ans = 0;
        for (char c : sc.next().toCharArray()) {
            if (deq.size() == 0) {
                deq.add(c);
            } else if (deq.size() == 1) {
                if (deq.peekLast() != c) {
                    deq.add(c);
                }
            } else {
                if (deq.peekLast() != c) {
                    char x = deq.pollLast();
                    if (deq.peekLast() == c) {
                        ans++;
                    } else {
                        deq.add(x);
                        deq.add(c);
                    }
                }
            }
        }
        ans += deq.size();
        char first = deq.peekFirst();
        while (deq.size() > 0) {
            char x = deq.poll();
            if (x == first) {
                ans--;
            }
        }
        System.out.println(ans + 1);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0