# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
844440 | vjudge1 | Nivelle (COCI20_nivelle) | C++17 | 144 ms | 856 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define fast ios::sync_with_stdio(0);cin.tie(0);
#define s second
#define f first
typedef long long ll;
const ll MOD = 998244353;
const ll LOGN = 20;
const ll MAXN = 1e6 + 5;
int cnt[26];
int main() {
fast
int N;
string s;
cin >> N >> s;
s = "#" + s;
double rate = 10.0;
int ansL = -1, ansR = -1;
for (int i = 1; i <= 26; i++) {
memset(cnt, 0, sizeof(cnt));
set<int> now;
int L = 1;
for (int R = 1; R <= N; R++) {
now.insert(s[R] - 'a');
cnt[s[R] - 'a']++;
while (now.size() > i) {
cnt[s[L] - 'a']--;
if (cnt[s[L] - 'a'] == 0)
now.erase(s[L] - 'a');
L++;
}
int all = R - L + 1;
int q = i;
double new_rate = ((double)q) / ((double)all);
if (new_rate < rate) {
rate = new_rate;
ansL = L;
ansR = R;
}
}
}
cout << ansL << " " << ansR << "\n";
}
컴파일 시 표준 에러 (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... |