题意:
解法:
如果只有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 ;
}
}
}
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;
}