結果
問題 | No.684 Prefix Parenthesis |
ユーザー | aguroshou |
提出日時 | 2018-05-12 01:24:36 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,103 bytes |
コンパイル時間 | 453 ms |
コンパイル使用メモリ | 59,476 KB |
実行使用メモリ | 13,764 KB |
最終ジャッジ日時 | 2024-06-28 09:28:34 |
合計ジャッジ時間 | 4,931 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,764 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 934 ms
6,940 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
#include<iostream> #include <algorithm> #include<string> using namespace std; int main() { int a = 0, b = 0, c = 0, d = 0, e = 0, f = 0, g = 0, h = 0,ans=0; string s; cin >> a; cin >> s; short int z[100001] = {}; short int y[100001] = {}; short int x[100001] = {}; z[0] = 0; for (b = 1; b <= a; b++) { if (s[b - 1] == '(') { z[b] += z[b - 1] + 1; /*if (z[b - 1]<0) { e++; } else*/ if(z[b - 1]>=0) { f++; } ans += e; x[b] = f; y[b] = g; } else if (s[b - 1] == ')') { if (z[b - 1]>0) { e++; f--; } else if (z[b - 1] <= 0) { g++; } ans += e; z[b] += z[b - 1] - 1; if (z[b]<0) { z[b] = 0; } x[b] = f; y[b] = g; } } for (b = 1; b <= a; b++) { //cout << "xy" << x[b] << y[b] << endl; } for (b = 1; b <= a; b++) { for (c = a; c > b; c--) { if (y[c - 1] < y[c]) { /* 後ろの要素の方が大きかったら */ d = y[c]; /* 交換する */ y[c] = y[c - 1]; y[c - 1] = d; d = x[c]; /* 交換する */ x[c] = x[c - 1]; x[c - 1] = d; } } } for (b = 1; b <= a; b++) { for (c = a; c > b; c--) { if (x[c - 1] > x[c]) { /* 前の要素の方が大きかったら */ d = x[c]; /* 交換する */ x[c] = x[c - 1]; x[c - 1] = d; d = y[c]; /* 交換する */ y[c] = y[c - 1]; y[c - 1] = d; } } } for ( b = 1; b <= a; b++) { //cout << "xy" << x[b] << y[b] << endl; } /*c = f; d = g; e = 0;*/ g = 0; e = 0; //cout << ans * 2 << endl; //for ( b = 0; b < c+d; b++) for ( b = 1; b <= a; b++) { //cout << ans * 2 << "ge" << g << e << endl; if (b!=a) { g += y[b+1]; } e += x[b]; if (e - g >= 0 && e>0) { ans += g; e -= g; g = 0; } else if (e - g<0 && e>0) { ans += e; g -= e; e = 0; } /*if (f>0) { f--; } else if (g>0) { g--; } else { break; }*/ } /*while (1) { cout << ans * 2 << "gf" << g << f << endl; if (e - f >= 0 && e>0) { ans += f; e -= f; } else if (e - f<0 && e>0) { ans += e; e = 0; } e += g; if (g>0) { g--; } else if (f>0) { f--; } else { break; } }*/ //for ( b = 1; b <= a; b++) //{ // if (s[b-1]=='(') // { // z[b] += z[b - 1] + 1; // if (z[b - 1]<0) // { // e++; // } // ans += e; // h = 1; // } // else if (s[b - 1] == ')') // { // if (z[b-1]>0) // { // e++; // } // ans += e; // z[b] += z[b - 1] - 1; // if (h==0) // { // ans--; // } // } //} // //for (b = 0; b <= a; b++) //{ // //cout << z[b] << endl; //} ////sort(z, z + 100001); //sort(z,z+a); //for (b = a; b>=0 ; b--) //{ // if (z[b]>0) // { // c+=z[b]; // } // else if (z[b]<0) // { // if (c>0) // { // if (c-z[b]<0) // { // ans += c; // c += z[b]; // } // else // { // ans += -z[b]; // c += z[b]; // } // } // } //} //for ( b = 0; b < a; b++) //{ // //cout << z[b] << endl; //} //if (ans<0) //{ // ans = 0; //} cout << ans*2 << endl; return 0; }