結果

問題 No.684 Prefix Parenthesis
ユーザー 37zigen37zigen
提出日時 2018-05-13 01:19:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 1,010 bytes
コンパイル時間 2,487 ms
コンパイル使用メモリ 79,068 KB
実行使用メモリ 60,108 KB
最終ジャッジ日時 2024-06-28 09:48:48
合計ジャッジ時間 9,648 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,156 KB
testcase_01 AC 128 ms
54,232 KB
testcase_02 AC 128 ms
53,984 KB
testcase_03 AC 208 ms
57,028 KB
testcase_04 AC 242 ms
56,820 KB
testcase_05 AC 254 ms
59,512 KB
testcase_06 AC 191 ms
54,784 KB
testcase_07 AC 245 ms
59,528 KB
testcase_08 AC 160 ms
54,304 KB
testcase_09 AC 161 ms
54,252 KB
testcase_10 AC 279 ms
59,952 KB
testcase_11 AC 204 ms
59,356 KB
testcase_12 AC 159 ms
54,176 KB
testcase_13 AC 248 ms
60,088 KB
testcase_14 AC 256 ms
60,108 KB
testcase_15 AC 195 ms
56,580 KB
testcase_16 AC 234 ms
59,220 KB
testcase_17 AC 201 ms
56,748 KB
testcase_18 AC 142 ms
54,284 KB
testcase_19 AC 250 ms
59,488 KB
testcase_20 AC 257 ms
59,792 KB
testcase_21 AC 272 ms
59,388 KB
testcase_22 AC 213 ms
59,248 KB
testcase_23 AC 231 ms
59,336 KB
testcase_24 AC 221 ms
59,060 KB
testcase_25 AC 269 ms
59,800 KB
testcase_26 AC 134 ms
54,100 KB
testcase_27 AC 129 ms
54,076 KB
testcase_28 AC 128 ms
53,996 KB
testcase_29 AC 252 ms
59,560 KB
testcase_30 AC 247 ms
59,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

	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(Math.min(o1[1], o1[0] + o2[1]), Math.min(o2[1], o2[0] + o1[1]));
			}
		});
		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