| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 683895 | alvingogo | Monochrome Points (JOI20_monochrome) | C++14 | 1 ms | 324 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
#define AquA cin.tie(0);ios_base::sync_with_stdio(0);
#define fs first
#define sc second
#define p_q priority_queue
#define int long long
using namespace std;
signed main(){
    AquA;
    int n;
    cin >> n;
    string s;
    cin >> s;
    int ans=1e14;
    vector<int> a,b;
    int pre=0,mx=0,k=0;
    for(int i=0;i<n;i++){
        if(s[i]=='B'){
            a.push_back(i);
            pre++;
        }
        if(s[i+n]=='W'){
            b.push_back(i);
            pre--;
        }
        if(pre<mx){
            mx=pre;
            k=i+1;
        }
    }
    int g=a.size();
    for(int i=0;i<g;i++){
        int xx=0;
        for(int j=0;j<g;j++){
            xx+=min(abs(b[j]-a[(i+j)%g]),n-abs(b[j]-a[(i+j)%g]));
        }
        ans=min(ans,xx);
    }
        
    cout << n*(n-1)/2-ans << "\n";
    return 0;
}
컴파일 시 표준 에러 (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... | ||||
