結果
| 問題 |
No.515 典型LCP
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-05-05 23:14:31 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 895 bytes |
| コンパイル時間 | 791 ms |
| コンパイル使用メモリ | 70,016 KB |
| 実行使用メモリ | 12,800 KB |
| 最終ジャッジ日時 | 2024-09-14 09:08:24 |
| 合計ジャッジ時間 | 7,701 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 WA * 2 TLE * 2 -- * 3 |
ソースコード
#include <iostream>
using namespace std;
struct iostream_init_struct
{
iostream_init_struct()
{
std::cin.tie(0);
std::cin.sync_with_stdio(false);
}
} iostream_init;
#include <string>
#include <vector>
#include <algorithm>
int N;
string s[100000];
int M, x, d, i, j;
void next()
{
i = (x / (N - 1));
j = (x % (N - 1));
if (i > j)
{
int temp = i;
i = j;
j = temp;
}
else
{
j = j + 1;
}
x = (x + d) % (N * (N - 1));
}
int LCP()
{
int ret = 0;
int length = min(s[i].size(), s[j].size());
const char* si = s[i].data();
const char* sj = s[j].data();
while (ret < length)
{
if (si[ret] == sj[ret])
{
++ret;
}
else
{
break;
}
}
return ret;
}
int main()
{
cin >> N;
for (int i = 0; i < N; ++i)
{
cin >> s[i];
}
cin >> M >> x >> d;
int sum = 0;
for (int indx = 0; indx < M; ++indx)
{
next();
sum += LCP();
}
cout << sum << endl;
}