Codeforces1562 C. Rings(构造)

Posted live4m

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces1562 C. Rings(构造)相关的知识,希望对你有一定的参考价值。

题意:

解法:

如果只有1,那么[1,n-1],[2,n]是答案.

只有存在0,假设某一个0的位置为i,
如果i在左半部分,那么[i,n],[i+1,n]是答案,
如果i在右半部分,那么[1,i],[1,i-1]是答案.

正确性显然

code:

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int maxm=2e5+5;
char s[maxm];
int n;
void solve(){
    cin>>n;
    cin>>(s+1);
    for(int i=1;i<=n;i++)s[i]-='0';
    for(int i=1;i<=n;i++){
        if(s[i]==0){
            if(i-1>=n/2){
                cout<<1<<' '<<i<<' '<<1<<' '<<i-1<<endl;return ;
            }else{
                cout<<i<<' '<<n<<' '<<i+1<<' '<<n<<endl;return ;
            }
        }
    }
    //全是1
    cout<<1<<' '<<n-1<<' '<<2<<' '<<n<<endl;
}
signed main(){
    #ifndef ONLINE_JUDGE
    freopen("in.txt","r",stdin);
    freopen("out.txt","w",stdout);
    #endif
    ios::sync_with_stdio(0);cin.tie(0);cin.tie(0);
    int T;cin>>T;while(T--)
        solve();
    return 0;
}

以上是关于Codeforces1562 C. Rings(构造)的主要内容,如果未能解决你的问题,请参考以下文章

宽搜ECNA 2015 D Rings (Codeforces GYM 100825)

Educational Codeforces Round 81 (Rated for Div. 2) C. Obtain The String

CodeForces - 1562E Rescue Niwen!(dp)

CodeForces - 1562E Rescue Niwen!(dp)

CodeForces - 1562D2 Two Hundred Twenty One (hard version)(二分)

CodeForces - 1562D2 Two Hundred Twenty One (hard version)(二分)