結果
問題 | No.2924 <===Super Spaceship String===> |
ユーザー | けんたろう |
提出日時 | 2024-10-12 16:07:37 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 667 bytes |
コンパイル時間 | 3,762 ms |
コンパイル使用メモリ | 278,856 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-12 16:07:42 |
合計ジャッジ時間 | 4,391 ms |
ジャッジサーバーID (参考情報) |
judge / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 11 ms
6,820 KB |
testcase_08 | AC | 11 ms
6,816 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define all(x) (x).begin(), (x).end() typedef long long ll; using namespace std; int main(void) { string S; cin >> S; stack<int> s; int ans = 0; bool avail = false; rep(i, S.size()) { if (S[i] == '<') { s.push(i); avail = true; } else if (S[i] == '>') { if (!avail) { continue; } if (!s.empty()) { int j = s.top(); s.pop(); if (i - j == 1) { avail = false; continue; } else { ans = max(ans, i - j + 1); } } else { avail = false; } } } cout << S.size() - ans << endl; return 0; }