結果
| 問題 |
No.204 ゴールデン・ウィーク(2)
|
| コンテスト | |
| ユーザー |
a
|
| 提出日時 | 2016-07-10 00:35:02 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 779 bytes |
| コンパイル時間 | 371 ms |
| コンパイル使用メモリ | 48,512 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-24 11:53:31 |
| 合計ジャッジ時間 | 1,787 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 46 |
ソースコード
#include <cstdio>
#include <vector>
#include <cstring>
#include <algorithm>
using namespace std;
int main(void) {
int d;
char s[111], t[111];
memset(s, 'x', sizeof(s));
scanf("%d", &d);
scanf("%s", s+14);
scanf("%s", s+14+7);
s[14+7+7] = 'x';
int res = 0;
for (int i = 0; i < 77; i++) {
if (s[i] == 'o')continue;
memcpy(t, s, sizeof(s));
bool o = false;
for (int j = 0; j < d; j++) {
if (s[i+j] == 'o')break;
s[i+j] = 'o';
}
if (!o) {
for (int j = 0; j < 99; j++) {
if (s[j] == 'o') {
int c = 1;
while (s[j+c] == 'o') {
c++;
}
res = max(res, c);
}
}
}
memcpy(s, t, sizeof(t));
}
printf("%d\n", res);
return 0;
}
a