QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#793458#464. 前缀函数 / KMPSin_WattWA 0ms3712kbC++14796b2024-11-29 20:06:262024-11-29 20:06:33

Judging History

你现在查看的是最新测评结果

  • [2024-11-29 20:06:33]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3712kb
  • [2024-11-29 20:06:26]
  • 提交

answer

#include <bits/stdc++.h>

typedef long long lnt;

using namespace std;

const int N = 1e5 + 7;

int n;
char s[N];
int ne[N];

void INIT() { }

void WORK() {
    cin >> (s + 1);
    n = strlen(s + 1);
    for (int i = 2, j = 0; i <= n; ++ i) {
        while (j && s[j + 1] != s[i]) j = ne[j];
        if (s[j + 1] == s[i]) ++ j;
        ne[i] = j;
    }
    for (int i = 1; i <= n; ++ i) {
        cout << ne[i] << '\n';
    }
}

//#define filename ""

int main() {
    #ifdef filename
    freopen(filename ".in", "r", stdin);
    freopen(filename ".out", "w", stdout);
    #endif
    cin.tie(0); cout.tie(0);
    ios::sync_with_stdio(0);		
    
    int Turn = 1;
    cin >> Turn;
    INIT();
    while (Turn -- ) {
        WORK();
    }
    return 0;
}

詳細信息

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3712kb

input:

mencimencimencimencimencimencimencimenciyvdfitnmencimencimencimencimencimencimencimenciyvdfitnmencimencimencimencimencimencimencimenciyvdfitnmencimencimencimencimencimencimencimenciyvdfitnmencimencimencimencimencimencimencimenciyvdfitnmencimencimencimencimencimencimencimenciyvdfitnmencimencimencimen...

output:


result:

wrong answer Answer contains longer sequence [length = 100000], but output contains 0 elements