結果

問題 No.3395 Range Flipping Game
コンテスト
ユーザー maksim
提出日時 2025-12-02 00:06:54
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 2,198 bytes
コンパイル時間 4,174 ms
コンパイル使用メモリ 285,304 KB
実行使用メモリ 11,544 KB
最終ジャッジ日時 2025-12-02 00:07:07
合計ジャッジ時間 12,166 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 14 WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>

using namespace std;
#define int long long
const int p=1e9+7;
int po(int a,int b) {if(b==0) return 1; if(b==1) return a; if(b%2==0) {int u=po(a,b/2);return (u*1LL*u)%p;} else {int u=po(a,b-1);return (a*1LL*u)%p;}}
int inv(int x) {return po(x,p-2);}
mt19937 rnd;
#define app push_back
#define all(x) (x).begin(),(x).end()
#ifdef LOCAL
#define debug(...) [](auto...a){ ((cout << a << ' '), ...) << endl;}(#__VA_ARGS__, ":", __VA_ARGS__)
#define debugv(v) do {cout<< #v <<" : {"; for(int izxc=0;izxc<v.size();++izxc) {cout << v[izxc];if(izxc+1!=v.size()) cout << ","; }cout <<"}"<< endl;} while(0)
#else
#define debug(...)
#define debugv(v)
#endif
#define lob(a,x) lower_bound(all(a),x)
#define upb(a,x) upper_bound(all(a),x)
#define print(x) cout<<(x)<<'\n'
#define suma(a) accumulate(all(a),0LL)
#define maxpos(a) max_element(all(a))-a.begin()
#define minpos(a) min_element(all(a))-a.begin()
#define maxa(a) *max_element(all(a))
#define mina(a) *min_element(all(a))
pair<int,vector<int> > read()
{
    int n;cin>>n;vector<int> a(n);for(int &x:a) {cin>>x;} return {n,a};
}
string f(string t) {
    int n=t.size();
    int fa=0;
    while(fa<n && t[fa]=='B') ++fa;
    int sa=fa;
    while(sa<n && t[sa]=='A') ++sa;
    for(int i=fa;i<sa;++i) {
        t[i]='B';
    }
    return t;
}
int32_t main()
{
    ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    int t;cin>>t;
    while(t--)
    {
    int n;cin>>n;
        string s;cin>>s;
        vector<int> moms;
        for(int i=0;i<n;++i) {
                if(i<=1 || s[i-2]!=s[i-1]) moms.app(i);
            if(i==0 || s[i-1]!=s[i]) moms.app(i);
            if(i>=n-1 || s[i]!=s[i+1]) moms.app(i);
            if(i>=n-2 || s[i+1]!=s[i+2]) moms.app(i);
        }
        if(moms.size()>30) moms.resize(30);
        string res;for(int i=0;i<n;++i) res.app('B');
        for(auto l:moms) {
            for(auto r:moms) {
                if(r>=l) {
                    string t=s;
                    for(int i=l;i<r;++i) {
                        t[i]='A'+'B'-t[i];
                    }
                    res=min(res,f(t));
                }
            }
        }
        cout<<res<<'\n';
    }
    return 0;
}
0