QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#288535#5647. Another Wine Tasting EventSorting#TL 0ms3552kbC++20988b2023-12-22 21:19:202023-12-22 21:19:20

Judging History

你现在查看的是最新测评结果

  • [2023-12-22 21:19:20]
  • 评测
  • 测评结果:TL
  • 用时:0ms
  • 内存:3552kb
  • [2023-12-22 21:19:20]
  • 提交

answer

#include <iostream>
#include <vector>
#include <functional>
#include <chrono>
#include <random>
#include <map>

using namespace std;

const int N = 2e6 + 3;

int n, prefix[N], a[N];
string s;

int get_sum(int l, int r){
    return prefix[r] - prefix[l - 1];
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(NULL);

    cin >> n >> s;
    for(int i = 1; i <= 2 * n - 1; ++i){
        a[i] = s[i] == 'W';
        prefix[i] = prefix[i - 1] + a[i];
    }

    map<int, int> mp;
    mt19937 mt(3);
    for(int i = 1; i <= 4 * n; ++i){
        int l = mt() % s.size() + 1;
        int r = mt() % s.size() + 1;
        if(l > r) swap(l, r);

        if(r - l + 1 < n){
            --i;
            continue;
        }

        mp[get_sum(l, r)]++;
    }

    vector<pair<int, int>> v(mp.begin(), mp.end());
    sort(v.begin(), v.end(), [&](auto l, auto r){
        return l.second > r.second;
    });

    cout << v[0].first << "\n";
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3552kb

input:

5
RWWRRRWWW

output:

3

result:

ok At least n intervals

Test #2:

score: 0
Accepted
time: 0ms
memory: 3448kb

input:

1
R

output:

0

result:

ok At least n intervals

Test #3:

score: -100
Time Limit Exceeded

input:

1000000
WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW...

output:


result: