結果

問題 No.592 括弧の対応 (2)
ユーザー uafr_csuafr_cs
提出日時 2017-11-10 22:24:44
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,047 ms / 5,000 ms
コード長 683 bytes
コンパイル時間 2,001 ms
コンパイル使用メモリ 75,104 KB
実行使用メモリ 58,680 KB
最終ジャッジ日時 2024-11-24 12:29:12
合計ジャッジ時間 5,737 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final char[] chs = sc.next().toCharArray();
		
		LinkedList<Integer> stack = new LinkedList<Integer>();
		int[] pairs = new int[N];
		
		for(int index = 0; index < N; index++){
			if(chs[index] == '('){
				stack.addFirst(index);
			}else{
				final int pair = stack.removeFirst();
				
				pairs[pair] = index;
				pairs[index] = pair;
			}
		}
		
		for(int i = 0; i < N; i++){
			System.out.println(pairs[i] + 1);
		}
	}
}
0