# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
967419 | Halym2007 | 회문 (APIO14_palindrome) | C++17 | 2 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define sz size()
#define ff first
#define ss second
const int N = 1e5 + 5;
map <string, int> m;
string s;
int n, jog;
int main () {
freopen ("polindrome.in", "r", stdin);
freopen ("polindrome.out", "w", stdout);
// freopen ("input.txt", "r", stdin);
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
cin >> s;
int n = (int)s.sz;
string t;
for (int i = 0; i < n; ++i) {
t = "";
for (int j = i; j < n; ++j) {
t += s[j];
bool tr = 0;
for (int k = 0; k < (int)t.sz / 2; ++k) {
if (t[i] != t[(int)t.sz - i - 1]) {
tr = 1;
break;
}
}
if (!tr) {
m[t]++;
}
}
}
for (auto i : m) {
int x = (int)i.ff.sz;
x *= m[i.ff];
jog = max (jog, x);
// if (x == 14) {
// cout << x << " " << m[i.ff] << " " << i.ff << " " << m[i.ff] << " " << (int)i.ff.sz<< "\n";
// }
}
cout << jog;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |