# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
846615 | vjudge1 | Nivelle (COCI20_nivelle) | C++11 | 424 ms | 856 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define lg(a) (31 - __builtin_clz((a)))
#define endl ("\n")
#define pb push_back
#define mp make_pair
#define st first
#define nd second
#define all(aa) aa.begin(), aa.end()
typedef long long ll;
const ll MOD = 1e9+7;
using namespace std;
/*
*/
void solve(){
int N; cin >> N;
string s; cin >> s;
set<char> col;
for(auto c:s){
col.insert(c);
}
int C = col.size();
col.clear();
map<char, int> cnt;
double average = 2;
int l=0, r=N-1;
for(int k=1;k<=C;k++){
int R = -1;
col.clear(); cnt.clear();
for(int L = 0;L<N;L++){
while(R!=N-1){
R++;
col.insert(s[R]);
if(col.size()==k+1){
col.erase(s[R]);
R--;
break;
}
else{
cnt[s[R]]++;
}
}
if((double) (k)/(R-L+1) < average){
average = (double) (k)/(R-L+1);
l = L, r = R;
// cout<<L+1<<' '<<R+1<< ' '<<average<<endl;
}
cnt[s[L]]--;
if(cnt[s[L]]==0) col.erase(s[L]);
}
}
cout<<l+1<<' '<<r+1<<endl;
}
int main(){
int test;
// cin >> test;
test =1;
while (test--){
solve();
}
}
컴파일 시 표준 에러 (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... |