結果

問題 No.1924 3 color painting on a line
ユーザー tentententen
提出日時 2022-05-10 20:35:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 1,760 bytes
コンパイル時間 2,019 ms
コンパイル使用メモリ 78,816 KB
実行使用メモリ 39,580 KB
最終ジャッジ日時 2024-07-18 03:25:54
合計ジャッジ時間 7,874 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,776 KB
testcase_01 AC 51 ms
36,916 KB
testcase_02 AC 51 ms
36,796 KB
testcase_03 AC 106 ms
38,976 KB
testcase_04 AC 100 ms
39,004 KB
testcase_05 AC 98 ms
39,080 KB
testcase_06 AC 102 ms
39,160 KB
testcase_07 AC 102 ms
39,052 KB
testcase_08 AC 99 ms
39,348 KB
testcase_09 AC 101 ms
38,732 KB
testcase_10 AC 101 ms
39,580 KB
testcase_11 AC 101 ms
39,280 KB
testcase_12 AC 101 ms
39,020 KB
testcase_13 AC 98 ms
38,908 KB
testcase_14 AC 99 ms
39,176 KB
testcase_15 AC 102 ms
38,648 KB
testcase_16 AC 98 ms
39,568 KB
testcase_17 AC 110 ms
38,968 KB
testcase_18 AC 103 ms
38,632 KB
testcase_19 AC 104 ms
39,168 KB
testcase_20 AC 169 ms
38,932 KB
testcase_21 AC 103 ms
38,864 KB
testcase_22 AC 99 ms
38,616 KB
testcase_23 AC 82 ms
37,888 KB
testcase_24 AC 97 ms
38,784 KB
testcase_25 AC 89 ms
38,244 KB
testcase_26 AC 60 ms
37,208 KB
testcase_27 AC 74 ms
38,104 KB
testcase_28 AC 71 ms
37,952 KB
testcase_29 AC 76 ms
37,704 KB
testcase_30 AC 75 ms
37,376 KB
testcase_31 AC 75 ms
37,480 KB
testcase_32 AC 96 ms
38,592 KB
testcase_33 AC 90 ms
38,648 KB
testcase_34 AC 90 ms
38,844 KB
testcase_35 AC 86 ms
38,480 KB
testcase_36 AC 79 ms
37,548 KB
testcase_37 AC 78 ms
38,112 KB
testcase_38 AC 80 ms
37,472 KB
testcase_39 AC 62 ms
37,128 KB
testcase_40 AC 50 ms
37,136 KB
testcase_41 AC 75 ms
38,136 KB
testcase_42 AC 101 ms
38,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        char[] values = sc.next().toCharArray();
        ArrayDeque<Character> deq = new ArrayDeque<>();
        deq.add(values[0]);
        int ans = 0;
        for (int i = 1; i < n; i++) {
            if (values[i] == deq.peekLast()) {
                continue;
            }
            if (deq.size() == 1) {
                deq.addLast(values[i]);
                continue;
            }
            char tmp = deq.pollLast();
            if (values[i] == deq.peekLast()) {
                ans++;
                continue;
            }
            deq.addLast(tmp);
            deq.addLast(values[i]);
        }
        if (deq.size() > 0) {
            char first = deq.pollFirst();
            for (char c : deq) {
                if (first != c) {
                    ans++;
                }
            }
            ans++;
        }
        System.out.println(ans);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0