QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#315565 | #8170. Na(logN)b | open your brain (Zhi Zhang, Yanru Guan, Jianfeng Zhu)# | WA | 1ms | 3928kb | C++17 | 2.2kb | 2024-01-27 14:18:12 | 2024-01-27 14:18:14 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn=(1e5)+10;
int len;
char s[maxn];
int now,mat[maxn];
struct node {
ll a,b; int c;
void Log() {
ll A=0,B=0; int C=0;
if (a) B=1;
else if (b||c) C=1;
a=A,b=B,c=C;
}
friend node operator * (node A,node B) {
A.a+=B.a,A.b+=B.b,A.c|=B.c; return A;
}
void print() { printf("(%lld,%lld,%d)\n",a,b,c); }
};
node max(node A,node B) {
if (A.a!=B.a) { if (A.a>B.a) return A; return B; }
if (A.b!=B.b) { if (A.b>B.b) return A; return B; }
if (A.c!=B.c) { if (A.c>B.c) return A; return B; }
return A;
}
int num() {
int x=0;
while (now<=len&&'0'<=s[now]&&s[now]<='9') {
x=x*10+s[now]-'0',now++;
}
return x;
}
node term();
node expr();
node fact() {
node res;
if (s[now]=='N') {
if (s[now+1]=='^') {
now+=2;
res.a=num();
res.b=res.c=0; return res;
}
now++;
res.a=1;
res.b=res.c=0; return res;
}
if (s[now]=='l') {
now+=4;
res=expr();
assert(s[now]==')');
now++;
res.Log();
if (s[now]=='^') {
now++;
int x=num();
res.b*=x;
}
return res;
}
assert(s[now]=='(');
now++;
res=expr();
assert(s[now]==')');
now++;
return res;
}
node term() {
node res; int flag=0;
while (1) {
node tmp=fact();
if (!flag) res=tmp; else res=res*tmp; flag=1;
if (now>len) break;
if (s[now]!='*') break;
now++;
}
return res;
}
node expr() {
node res; int flag=0;
while (1) {
node tmp=term();
if (!flag) res=tmp; else res=max(res,tmp); flag=1;
if (now>len) break;
if (s[now]==')') break;
assert(s[now]=='+');
now++;
}
res.print();
return res;
}
int main() {
//freopen("1.txt","r",stdin);
scanf("%s",s+1);
len=strlen(s+1);
now=1;
node A=expr();
printf("%lld ",A.a);
if (A.c) printf("%lld\n",A.b+1); else printf("%lld\n",A.b);
return 0;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3928kb
input:
N*log(N^2)*log(N)+N+log(N^1+N)^2*N
output:
(2,0,0) (1,0,0) (1,0,0) (1,2,0) 1 2
result:
wrong answer 1st words differ - expected: '1', found: '(2,0,0)'