Submission #63044131


Source Code Expand

#include <bits/stdc++.h>
using namespace std;

int main() {
    string S;
    cin >> S;
    int cnt1 = 0, cnt2 = 0, cnt3 = 0;
    stack<char> s;
    for (int i = 0; i < S.size(); i++) {
        if (S[i] == '(') {
            cnt1++;
            s.push('(');
        } else if (S[i] == '[') {
            cnt2++;
            s.push('[');
        } else if (S[i] == '<') {
            cnt3++;
            s.push('<');
        } else if (S[i] == ')') {
            if (!s.empty() && s.top() != '(') {
                cout << "No" << endl;
                return 0;
            }
            cnt1--;
            s.pop();
            if (cnt1 < 0) {
                cout << "No" << endl;
                return 0;
            }
        } else if (S[i] == ']') {
            if (!s.empty() && s.top() != '[') {
                cout << "No" << endl;
                return 0;
            }
            cnt2--;
            s.pop();
            if (cnt2 < 0) {
                cout << "No" << endl;
                return 0;
            }
        } else if (S[i] == '>') {
            if (!s.empty() && s.top() != '<') {
                cout << "No" << endl;
                return 0;
            }
            cnt3--;
            s.pop();
            if (cnt3 < 0) {
                cout << "No" << endl;
                return 0;
            }
        }
    }

    if (cnt1 == 0 && cnt2 == 0 && cnt3 == 0) {
        cout << "Yes" << endl;
    } else {
        cout << "No" << endl;
    }
}

Submission Info

Submission Time
Task D - Colorful Bracket Sequence
User thedekopin0108
Language C++ 17 (gcc 12.2)
Score 400
Code Size 1543 Byte
Status AC
Exec Time 5 ms
Memory 3808 KiB

Compile Error

Main.cpp: In function ‘int main()’:
Main.cpp:9:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::__cxx11::basic_string<char>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
    9 |     for (int i = 0; i < S.size(); i++) {
      |                     ~~^~~~~~~~~~

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 400 / 400
Status
AC × 3
AC × 40
Set Name Test Cases
Sample example_00.txt, example_01.txt, example_02.txt
All example_00.txt, example_01.txt, example_02.txt, hand_00.txt, hand_01.txt, hand_02.txt, hand_03.txt, hand_04.txt, hand_05.txt, hand_06.txt, random_00.txt, random_01.txt, random_02.txt, random_03.txt, random_04.txt, random_05.txt, random_06.txt, random_07.txt, random_08.txt, random_09.txt, random_10.txt, random_11.txt, random_12.txt, random_13.txt, random_14.txt, random_15.txt, random_16.txt, random_17.txt, random_18.txt, random_19.txt, random_20.txt, random_21.txt, random_22.txt, random_23.txt, random_24.txt, random_25.txt, random_26.txt, random_27.txt, random_28.txt, random_29.txt
Case Name Status Exec Time Memory
example_00.txt AC 1 ms 3488 KiB
example_01.txt AC 1 ms 3452 KiB
example_02.txt AC 1 ms 3680 KiB
hand_00.txt AC 5 ms 3612 KiB
hand_01.txt AC 4 ms 3672 KiB
hand_02.txt AC 5 ms 3672 KiB
hand_03.txt AC 1 ms 3676 KiB
hand_04.txt AC 5 ms 3808 KiB
hand_05.txt AC 1 ms 3480 KiB
hand_06.txt AC 1 ms 3556 KiB
random_00.txt AC 4 ms 3680 KiB
random_01.txt AC 5 ms 3804 KiB
random_02.txt AC 5 ms 3656 KiB
random_03.txt AC 5 ms 3576 KiB
random_04.txt AC 5 ms 3800 KiB
random_05.txt AC 5 ms 3664 KiB
random_06.txt AC 3 ms 3672 KiB
random_07.txt AC 4 ms 3604 KiB
random_08.txt AC 4 ms 3664 KiB
random_09.txt AC 5 ms 3604 KiB
random_10.txt AC 5 ms 3612 KiB
random_11.txt AC 5 ms 3732 KiB
random_12.txt AC 5 ms 3608 KiB
random_13.txt AC 5 ms 3668 KiB
random_14.txt AC 5 ms 3736 KiB
random_15.txt AC 5 ms 3732 KiB
random_16.txt AC 5 ms 3596 KiB
random_17.txt AC 4 ms 3664 KiB
random_18.txt AC 5 ms 3616 KiB
random_19.txt AC 4 ms 3668 KiB
random_20.txt AC 5 ms 3804 KiB
random_21.txt AC 5 ms 3604 KiB
random_22.txt AC 5 ms 3664 KiB
random_23.txt AC 5 ms 3600 KiB
random_24.txt AC 5 ms 3680 KiB
random_25.txt AC 4 ms 3804 KiB
random_26.txt AC 5 ms 3576 KiB
random_27.txt AC 5 ms 3780 KiB
random_28.txt AC 5 ms 3572 KiB
random_29.txt AC 4 ms 3536 KiB