Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99333 | Fess | 表达式括号匹配1 | C++ | 通过 | 100 | 0 MS | 252 KB | 468 | 2023-08-22 16:17:11 |
#include<iostream> #include<cstdio> #include<cstring> using namespace std; int main() { char s[256],stack[256],top=0; gets(s); if(strlen(s)%2) { cout<<"Wrong"; return 0; } for(int i=0;i<strlen(s);i++) { if(s[i]=='('||s[i]=='['||s[i]=='{') { stack[top++]=s[i]; } else { if(s[i]-(s[i]==')'?1:2)==stack[top-1]) stack[--top]='\0'; else { cout<<"Wrong"; return 0; } } } cout<<"OK"; return 0; }