QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#315565#8170. Na(logN)bopen your brain (Zhi Zhang, Yanru Guan, Jianfeng Zhu)#WA 1ms3928kbC++172.2kb2024-01-27 14:18:122024-01-27 14:18:14

Judging History

This is the latest submission verdict.

  • [2024-01-27 14:18:14]
  • Judged
  • Verdict: WA
  • Time: 1ms
  • Memory: 3928kb
  • [2024-01-27 14:18:12]
  • Submitted

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)'