# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
206165 | luciocf | Nivelle (COCI20_nivelle) | C++14 | 103 ms | 1268 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int maxn = 1e5+10;
int n;
char a[maxn];
vector<int> pos[27];
bool good(int a, int b, int c, int d)
{
return c*b < a*d;
}
int main(void)
{
scanf("%d", &n);
for (int i = 1; i <= n; i++)
scanf(" %c", &a[i]);
for (int i = n; i >= 1; i--)
pos[(int)(a[i]-'a')].push_back(i);
int opt_a = 1, opt_b = 1;
int opt_l = 1, opt_r = 1;
for (int i = 1; i <= n; i++)
{
vector<int> p;
for (int j = 0; j < 26; j++)
if (pos[j].size() > 0)
p.push_back(pos[j].back());
sort(p.begin(), p.end());
p.push_back(n+1);
for (int j = 1; j < p.size(); j++)
{
if (good(opt_a, opt_b, j, p[j]-i))
{
opt_a = j, opt_b = p[j]-i;
opt_l = i, opt_r = p[j]-1;
}
}
pos[(int)(a[i]-'a')].pop_back();
}
printf("%d %d\n", opt_l, opt_r);
}
컴파일 시 표준 에러 (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... |