ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#210922 | #2068. 最长公共前缀 | rua | 0 | 55ms | 5164kb | C++11 | 1.1kb | 2024-08-08 10:33:26 | 2024-08-08 12:38:02 |
answer
#include <bits/stdc++.h>
#define inf INT_MAX
#define NN INT_MIN
typedef long long ll;
using namespace std;
int n, m, q;
char C[2005][2005];
int main()
{
#ifdef WHX_AK_IOI
freopen("data.in", "r", stdin);
// freopen("dataout.txt","w",stdout);
#endif
ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
cin >> n >> m >> q;
for (int i = 1; i <= n; i++)
for (int j = 1; j <= m; j++)
cin >> C[i][j];
if (q <= 10000)
{
while (q--)
{
int a, b, x, y;
char c, z;
cin >> a >> b >> c >> x >> y >> z;
int dx1, dy1, dx2, dy2;
if (c == 'H')
dy1 = 1;
if (c == 'V')
dx1 = 1;
if (c == 'D')
dx1 = 1, dy1 = 1;
if (z == 'H')
dy2 = 1;
if (z == 'V')
dx2 = 1;
if (z == 'D')
dx2 = 1, dy2 = 1;
int ans = 0;
while (C[a][b] == C[x][y])
a += dx1, b += dy1, x += dx2, y += dy2, ans++;
cout << ans << endl;
}
}
else
{
cout << "gxhakioi" << endl;
}
// system("pause");
return 0;
}
详细
小提示:点击横条可展开更详细的信息
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 28ms
memory: 3224kb
input:
1000 2000 10000 awanannwnnaaawwnwawanwnwaaaanwnaaananwawwwwnannannawwwawwaaaaannwnwnwnnaaawaawawannn...
output:
0 0 0 0 0 0 0 2 0 1 0 0 1 0 1 0 1 0 1 1 0 0 1 0 4 2 0 0 0 0 1 0 0 0 1 0 0 2 0 1 1 0 2 0 3 1 1 0 1 0 ...
result:
wrong answer 17th words differ - expected: '2', found: '1'
Subtask #2:
score: 0
Wrong Answer
Test #3:
score: 0
Wrong Answer
time: 27ms
memory: 5164kb
input:
2000 2000 1000000 gggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg...
output:
gxhakioi
result:
wrong answer 1st words differ - expected: '1146', found: 'gxhakioi'
Subtask #3:
score: 0
Skipped
Subtask #4:
score: 0
Skipped