結果

問題 No.592 括弧の対応 (2)
ユーザー ku_material_roku_material_ro
提出日時 2017-12-01 18:39:04
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,027 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 72,576 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-05-05 20:37:47
合計ジャッジ時間 7,383 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <math.h>
#include <string>
#include <algorithm>
#include <vector>
#include <iomanip>
#define REP(i,n) for(int i=0;i<n;i++)
typedef long long ll;

using namespace std;
int kaijo(int n){
	int ans = 1;
	if (n != 0){
		for (int i = 0; i < n; i++){
			ans *= (n - i);
		}
	}
	else{
		ans = 1;
	}
	return ans;
}

int main(){
	int n;
	int a = 0;
	int b = 0;
	int z;
	int ans[200000];
	string s;
	cin >> n >> s;
	while (1){
	
		a = (int)s.find("(",a);
		if (a == -1){
			break;
		}
		if (s[a + 1] == ')'){
			ans[a] = a + 1;
			ans[a + 1] = a;
			
			s[a] = 'a';
			s[a + 1] = 'a';

		//	cout << s << endl;
			a = 0;
			
		}
		else if (s[a + 1] == 'a'){
			b = a;
			while (1){
				if (s[b + 1] == 'a'){
					b++;
				}
				else{
					break;
				}
		
			}
			if (s[b + 1] == ')'){
				ans[a] = b + 1;
				ans[b + 1] = a;
				s[a] = 'a';
				s[b + 1] = 'a';
				a = 0;
			}
		//	cout << s << endl;
			
		}
		else if(a!=-1){
			a++;
			
		}
		



		
	}
	REP(i, n){
		cout << ans[i] +1<< endl;
	}
	return 0;
}
0