結果
| 問題 | No.2162 Copy and Paste 2 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-03-06 20:29:18 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 2,063 bytes |
| 記録 | |
| コンパイル時間 | 1,605 ms |
| コンパイル使用メモリ | 32,000 KB |
| 実行使用メモリ | 362,964 KB |
| 最終ジャッジ日時 | 2024-11-06 21:11:06 |
| 合計ジャッジ時間 | 13,168 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 TLE * 1 -- * 18 |
ソースコード
#include <stdio.h>
void Z_algorithm(char S[], int Z[])
{
int i, j, k, l;
for (l = 0; S[l] != 0; l++);
Z[0] = l;
for (i = 1, j = 0; i < l; i++) {
for (; i + j < l && S[i+j] == S[j]; j++);
Z[i] = j;
if (j == 0) continue;
for (k = 1; k < j && k + Z[k] < j; k++) Z[i+k] = Z[k];
i += k - 1;
j -= k;
}
}
#define HASH 5000011
const int H_Mod = HASH;
typedef struct List {
struct List *next;
int x, y;
} list;
int hash_func(int x, int y)
{
return (((long long)x << 20) + y) % H_Mod;
}
int q[20000000][3];
list *hash[HASH] = {}, hd[20000000], *p;
int main()
{
char S[200001];
scanf("%s", S);
int i, Z[200001], Z_max[200001];
Z_algorithm(S, Z);
for (i = 0; S[i] != 0; i++);
Z_max[i] = 0;
for (i--; i >= 0; i--) Z_max[i] = (Z_max[i+1] > Z[i])? Z_max[i+1]: Z[i];
int h, head, tail, x, y, d;
q[0][0] = 0;
q[0][1] = 0;
q[0][2] = 0;
hd[0].x = 0;
hd[0].y = 0;
hd[0].next = hash[0];
hash[0] = &(hd[0]);
for (head = 0, tail = 1; head < tail; head++) {
x = q[head][0];
y = q[head][1];
d = q[head][2];
if (S[x] == 0) break;
h = hash_func(x + 1, y);
for (p = hash[h]; p != NULL; p = p->next) if (p->x == x + 1 && p->y == y) break;
if (p == NULL) {
hd[tail].x = x + 1;
hd[tail].y = y;
hd[tail].next = hash[h];
hash[h] = &(hd[tail]);
q[tail][0] = x + 1;
q[tail][1] = y;
q[tail++][2] = d + 1;
}
if (Z[x] >= y) {
h = hash_func(x + y, y);
for (p = hash[h]; p != NULL; p = p->next) if (p->x == x + y && p->y == y) break;
if (p == NULL) {
hd[tail].x = x + y;
hd[tail].y = y;
hd[tail].next = hash[h];
hash[h] = &(hd[tail]);
q[tail][0] = x + y;
q[tail][1] = y;
q[tail++][2] = d + 1;
}
}
if (Z_max[x] >= x) {
h = hash_func(x, x);
for (p = hash[h]; p != NULL; p = p->next) if (p->x == x && p->y == x) break;
if (p == NULL) {
hd[tail].x = x;
hd[tail].y = x;
hd[tail].next = hash[h];
hash[h] = &(hd[tail]);
q[tail][0] = x;
q[tail][1] = x;
q[tail++][2] = d + 1;
}
}
}
printf("%d\n", d);
fflush(stdout);
return 0;
}