結果
問題 | No.457 (^^*) |
ユーザー | ebicochineal |
提出日時 | 2016-12-08 23:13:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,982 bytes |
コンパイル時間 | 1,994 ms |
コンパイル使用メモリ | 177,612 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-05-06 09:46:50 |
合計ジャッジ時間 | 6,478 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 13 ms
5,376 KB |
testcase_08 | AC | 95 ms
5,376 KB |
testcase_09 | AC | 681 ms
5,376 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; string replace5126(string str, string old_s, string new_s, int n = 0) { n = n < 1 ? str.size() : n; for (int i; (i = str.find(old_s)) > -1 && n; --n) { str.replace(i, old_s.size(), new_s); } return str; } int count5126(string str, string a) { int cnt = 0; for (int i = 0; (i = str.find(a, i)) > -1; i += a.size()) { ++cnt; } return cnt; } vector<string> split5126(string str, string sep = " ", int n = 0) { int prev = 0; vector<string> v; n = n < 1 ? str.size() : n; for (int i = 0; (i = str.find(sep, prev)) > -1 && n; --n) { v.push_back(str.substr(prev, i - prev)); prev = i + sep.size(); } v.push_back(str.substr(prev, str.size())); return v; } vector<string> rsplit5126(string str, string sep = " ", int n = 0) { int prev = str.size() - 1; vector<string> v; n = n < 1 ? str.size() : n; for (int i = 0; (i = str.rfind(sep, prev)) > -1 && n; --n) { v.insert(v.begin(), str.substr(i + sep.size(), prev-i + sep.size() - 1)); prev = i - 1; } v.insert(v.begin(), str.substr(0, prev+1)); return v; } string slice5126(string str, int a, int b) { int s = a < 0 ? str.size() + a : a; int e = b < 0 ? str.size() + b : b; e = b == 0 ? str.size() : e; return str.substr(s, (s > e ? s : e) - s); } int main() { string S; int lcnt =0, rcnt = 0; cin >> S; vector<int> l, r; for (int i = 0; i < S.size(); ++i) { if (S[i] == '(') { l.push_back(i); } if (S[i] == ')') { r.push_back(i); } } string i; for (auto& s : l) { for (auto& e : r) { i = slice5126(S, s+1, e); if (count5126(i, "*") > 0) { lcnt += count5126(rsplit5126(i, "*", 1)[0], "^") > 1; rcnt += count5126(split5126(i, "*", 1)[1], "^") > 1; } } } cout << lcnt << " " << rcnt << endl; return 0; }