結果

問題 No.1433 Two color sequence
ユーザー ApassApass
提出日時 2021-03-19 22:46:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 1,112 bytes
コンパイル時間 3,818 ms
コンパイル使用メモリ 78,184 KB
実行使用メモリ 54,840 KB
最終ジャッジ日時 2024-11-19 00:06:41
合計ジャッジ時間 11,172 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,936 KB
testcase_01 AC 53 ms
37,020 KB
testcase_02 AC 53 ms
36,692 KB
testcase_03 AC 223 ms
45,888 KB
testcase_04 AC 221 ms
46,020 KB
testcase_05 AC 52 ms
36,808 KB
testcase_06 AC 54 ms
36,952 KB
testcase_07 AC 54 ms
36,772 KB
testcase_08 AC 329 ms
54,352 KB
testcase_09 AC 364 ms
54,744 KB
testcase_10 AC 332 ms
54,760 KB
testcase_11 AC 330 ms
54,396 KB
testcase_12 AC 364 ms
54,604 KB
testcase_13 AC 363 ms
54,580 KB
testcase_14 AC 356 ms
54,380 KB
testcase_15 AC 335 ms
54,436 KB
testcase_16 AC 337 ms
54,592 KB
testcase_17 AC 336 ms
54,652 KB
testcase_18 AC 364 ms
54,840 KB
testcase_19 AC 339 ms
54,508 KB
testcase_20 AC 333 ms
54,508 KB
testcase_21 AC 336 ms
54,624 KB
testcase_22 AC 339 ms
54,712 KB
testcase_23 AC 354 ms
54,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class B_TwoColorSequence {
    private static final BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    private static StringTokenizer st;

    private static int readInt() throws IOException {
        while (st == null || !st.hasMoreTokens()) st = new StringTokenizer(br.readLine());
        return Integer.parseInt(st.nextToken());
    }

    public static void main(String[] args) throws IOException {
        int N = readInt();
        String paint = br.readLine();
        int[] a = new int[N];
        for (int i = 0; i < N; i++)
            a[i] = readInt()
                    * (paint.charAt(i) == 'R' ? -1 : 1);

        long maxPos = Math.max(0, a[0]);
        long minNeg = Math.min(0, a[0]);
        long answer = Math.max(maxPos, -minNeg);
        for (int i = 1; i < N; i++) {
            maxPos = Math.max(maxPos + a[i], 0);
            answer = Math.max(answer, maxPos);
            minNeg = Math.min(minNeg + a[i], 0);
            answer = Math.max(answer, -minNeg);
        }

        System.out.println(answer);
    }
}
0