Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99320 陈志轩 表达式括号匹配2 C++ 通过 100 0 MS 704 KB 1071 2023-08-22 16:11:48

Tests(8/8):


#include<bits/stdc++.h> //#define int long long using namespace std; namespace Fast{ inline int fr(){ register int x = 0,f = 1; static char c = getchar(); while (c < '0' || c > '9'){ if (c == '-'){ f = -1; } c = getchar(); } while (c >= '0' && c <= '9'){ x = (x << 1) + (x << 3) + (c ^ 48); c = getchar(); } return x * f; } inline void fw(int x){ if (x < 0){ x = -x; putchar('-'); } if (x > 9){ fw(x / 10); } putchar(x % 10 + 48); } } using namespace Fast; struct Stack{ int a[114514]; int top; void init(){ memset(a,0,sizeof(a)); top = 0; } void push(int x){ top++; a[top] = x; } void pop(){ top--; } bool empty(){ return top == 0; } }s; signed main(){ char c; s.init(); while (cin>>c){ if (c == '@'){ break; } if (c == '('){ s.push(114514); } else if (c == ')'){ if (s.empty()){ puts("NO"); } s.pop(); } } if (s.empty()){ puts("YES"); } else{ puts("NO"); } return 0; }


测评信息: