# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
844875 | vjudge1 | Nivelle (COCI20_nivelle) | C++17 | 61 ms | 640 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fast cin.tie(0)->sync_with_stdio(0);
#define int long long
#define inf ((int)1e18)
#define N 200005
using namespace std;
int32_t main(){
fast
int n;
cin>>n;
string s;
cin>>s;
double mn = 100, L = 0, R = 0;
for(int i = 1; i <= min(n, 26ll); i++) {
map <char, int> mp;
mp.insert({s[0], 1});
int l = 0;
for(int j = 1; j < n; j++) {
if(mp.size() < i) {
if(!mp.count(s[j]))
mp.insert({s[j], 0});
mp[s[j]]++;
if((double)mp.size() / (j - l + 1) < mn) {
mn = (double)mp.size() / (j - l + 1);
L = l, R = j;
}
continue;
}
//mp.size() == i
if(!mp.count(s[j])) {
if(mp[s[l]] == 1)
mp.erase(s[l]);
else
mp[s[l]]--;
l++;
j--;
continue;
}
if((double)mp.size() / (j - l + 1) < mn) {
mn = (double)mp.size() / (j - l + 1);
L = l, R = j;
}
}
}
cout<<++L<<" "<<++R<<"\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... |