Codeforces Round #741 C. Rings (构造)

题意

你有一个长度为 n ( 2 ≤ n ≤ 2 ∗ 1 0 4 ) n(2 \le n \le 2*10^4) n(2n2104)的二进制 01 串 01串 01

你需要找到不相交的两个长度至少为 ⌊ n 2 ⌋ ⌊\frac{n}{2}⌋ 2n的二进制串使得它们互为倍数关系(也可以相等)

思路

若能在 [ n / 2 + 1 , n ] [n/2+1,n] [n/2+1,n]内找到一个 0 0 0,那答案即为 [ 1 , p o s ] , [ 1 , p o s − 1 ] [1,pos],[1,pos-1] [1,pos],[1,pos1] 2 2 2倍), p o s pos pos 0 0 0所在的位置

否则在 [ n / 2 + 1 , n ] [n/2+1,n] [n/2+1,n]内都为 1 1 1

  • p o s = n / 2 pos=n/2 pos=n/2的值为 0 0 0,则 [ n / 2 , n ] , [ n / 2 + 1 , n ] [n/2,n],[n/2+1,n] [n/2,n],[n/2+1,n]表示的二进制串相等
  • p o s = n / 2 pos=n/2 pos=n/2的值为 1 1 1,则 [ n / 2 , n − 1 ] , [ n / 2 + 1 , n ] [n/2,n-1],[n/2+1,n] [n/2,n1],[n/2+1,n]表示的二进制串相等

综上模拟即可

Code

#include <bits/stdc++.h>
using namespace std;
#pragma GCC optimize(2)
#pragma GCC optimize(3)
typedef long long ll;
#define INF 0x3f3f3f3f
const int mod = 1e9 + 7;
const int maxn = 1e5 + 5;
#define iss ios::sync_with_stdio(false)
#define debug(x) cout << #x << ": " << x << endl;
inline ll read() {
    ll s = 0, w = 1;
    char ch = getchar();
    while (ch < 48 || ch > 57) {
        if (ch == '-') w = -1;
        ch = getchar();
    }
    while (ch >= 48 && ch <= 57)
        s = (s << 1) + (s << 3) + (ch ^ 48), ch = getchar();
    return s * w;
}
char s[20005];
int main() {
    int t = read();
    while (t--) {
        int n = read();
        scanf("%s", s + 1);
        int pos = -1;
        for (int i = n / 2 + 1; i <= n; ++i) {
            if (s[i] == '0') {
                pos = i;
                break;
            }
        }
        if (pos != -1) {
            cout << 1 << " " << pos << " ";
            cout << 1 << " " << pos - 1 << endl;
        } else {
            if (s[n / 2] == '0') {
                cout << n / 2 << " " << n << " ";
                cout << n / 2 + 1 << " " << n << endl;
            } else {
                cout << n / 2 << " " << n - 1 << " ";
                cout << n / 2 + 1 << " " << n << endl;
            }
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值