結果

問題 No.684 Prefix Parenthesis
ユーザー 37zigen37zigen
提出日時 2018-05-12 23:46:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 960 bytes
コンパイル時間 2,228 ms
コンパイル使用メモリ 79,312 KB
実行使用メモリ 60,056 KB
最終ジャッジ日時 2024-06-28 09:45:56
合計ジャッジ時間 10,074 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,248 KB
testcase_01 AC 130 ms
54,072 KB
testcase_02 AC 133 ms
54,156 KB
testcase_03 AC 217 ms
56,908 KB
testcase_04 AC 248 ms
56,680 KB
testcase_05 AC 260 ms
59,428 KB
testcase_06 AC 206 ms
54,512 KB
testcase_07 WA -
testcase_08 AC 160 ms
54,248 KB
testcase_09 WA -
testcase_10 AC 281 ms
59,572 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 257 ms
59,540 KB
testcase_14 AC 236 ms
59,484 KB
testcase_15 AC 193 ms
56,680 KB
testcase_16 AC 245 ms
59,584 KB
testcase_17 AC 224 ms
56,480 KB
testcase_18 AC 138 ms
53,792 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 281 ms
60,056 KB
testcase_22 AC 232 ms
59,208 KB
testcase_23 AC 227 ms
59,184 KB
testcase_24 AC 258 ms
59,336 KB
testcase_25 AC 268 ms
59,732 KB
testcase_26 AC 128 ms
54,260 KB
testcase_27 AC 130 ms
54,132 KB
testcase_28 AC 127 ms
53,852 KB
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;

public class Main {
	long mo = 1_000_000_000 + 7;

	void run() {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		String str = sc.next();
		long ans = N * (N + 1) / 2;
		long sum = 0;
		long min = 0;
		long[][] a = new long[(int) N][2];
		for (int i = 0; i < N; ++i) {
			sum += (str.charAt(i) == '(' ? 1 : -1);
			ans -= sum;
			min = Math.min(min, sum);
			a[i][0] = sum;
			a[i][1] = min;
		}
		Arrays.sort(a, new Comparator<long[]>() {
			@Override
			public int compare(long[] o1, long[] o2) {
				return -Long.compare(o1[0], o2[0]);
			}
		});
		sum = 0;
		min = 0;
		for (int i = 0; i < N; ++i) {
			min = Math.min(min, a[i][1] + sum);
			sum += a[i][0];
		}
		System.out.println(ans + 2 * min);
	}

	public static void main(String[] args) {
		new Main().run();
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0