結果

問題 No.2281 K → K-1 01 Flip
ユーザー lgswdnlgswdn
提出日時 2023-05-03 15:39:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 1,449 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 202,828 KB
実行使用メモリ 23,452 KB
最終ジャッジ日時 2024-05-01 14:12:13
合計ジャッジ時間 12,005 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 20 ms
18,352 KB
testcase_02 AC 67 ms
14,740 KB
testcase_03 AC 65 ms
21,584 KB
testcase_04 AC 15 ms
11,900 KB
testcase_05 AC 28 ms
17,008 KB
testcase_06 AC 43 ms
14,308 KB
testcase_07 AC 24 ms
20,976 KB
testcase_08 AC 43 ms
21,544 KB
testcase_09 AC 48 ms
10,292 KB
testcase_10 AC 44 ms
12,392 KB
testcase_11 AC 19 ms
12,328 KB
testcase_12 AC 26 ms
20,228 KB
testcase_13 AC 63 ms
12,384 KB
testcase_14 AC 37 ms
17,056 KB
testcase_15 AC 16 ms
9,828 KB
testcase_16 AC 56 ms
14,980 KB
testcase_17 AC 63 ms
17,052 KB
testcase_18 AC 51 ms
13,976 KB
testcase_19 AC 35 ms
18,828 KB
testcase_20 AC 21 ms
10,352 KB
testcase_21 AC 31 ms
19,352 KB
testcase_22 AC 47 ms
12,348 KB
testcase_23 AC 5 ms
6,944 KB
testcase_24 AC 25 ms
7,940 KB
testcase_25 AC 20 ms
7,912 KB
testcase_26 AC 29 ms
18,296 KB
testcase_27 AC 47 ms
21,544 KB
testcase_28 AC 25 ms
20,892 KB
testcase_29 AC 3 ms
6,944 KB
testcase_30 AC 27 ms
7,920 KB
testcase_31 AC 39 ms
16,988 KB
testcase_32 AC 51 ms
18,832 KB
testcase_33 AC 29 ms
14,924 KB
testcase_34 AC 37 ms
7,972 KB
testcase_35 AC 39 ms
21,524 KB
testcase_36 AC 40 ms
6,944 KB
testcase_37 AC 42 ms
14,108 KB
testcase_38 AC 48 ms
10,088 KB
testcase_39 AC 23 ms
10,164 KB
testcase_40 AC 15 ms
14,812 KB
testcase_41 AC 81 ms
23,280 KB
testcase_42 AC 84 ms
23,340 KB
testcase_43 AC 79 ms
23,284 KB
testcase_44 AC 73 ms
23,400 KB
testcase_45 AC 82 ms
23,348 KB
testcase_46 AC 87 ms
23,392 KB
testcase_47 AC 108 ms
23,424 KB
testcase_48 AC 90 ms
23,388 KB
testcase_49 AC 83 ms
23,344 KB
testcase_50 AC 79 ms
23,348 KB
testcase_51 AC 64 ms
23,452 KB
testcase_52 AC 65 ms
23,316 KB
testcase_53 AC 62 ms
23,264 KB
testcase_54 AC 64 ms
23,380 KB
testcase_55 AC 64 ms
23,360 KB
testcase_56 AC 64 ms
23,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,a,b) for(int i=(a);i<=(b);i++)
#define per(i,a,b) for(int i=(a);i>=(b);i--)
#define fi first
#define se second
#define eb emplace_back
#define popc __builtin_popcount
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef vector<int> vi;
typedef vector<pii> vp;
typedef unsigned long long ull;
typedef long double ld;

int read() {
  int x=0,w=1; char c=getchar(); 
  while(!isdigit(c)) {if(c=='-') w=-1; c=getchar();}
  while(isdigit(c)) {x=x*10+(c-'0'); c=getchar();}
  return x*w;
}

const int N=2e5+9;
int n,m,f[N][22],a[N],p[N][2],lst[2];
char s[N];

int qry(int l,int r) {
  if(l>r) return 0; int g=__lg(r-l+1); 
  return max(f[l][g],f[r-(1<<g)+1][g]);
}

signed main() {
  n=read(), m=read();
  scanf("%s",s+1);
  rep(i,1,n) a[i]=s[i]-'0';
  rep(i,1,n) rep(j,0,1) p[i][j]=p[i-1][j]+(a[i]==j);
  rep(i,1,n) {
    f[i][0]=i-lst[a[i]^1];
    lst[a[i]]=i;
  }
  per(i,n,1)
    rep(h,1,20) if(i+(1<<h)-1<=n)
      f[i][h]=max(f[i][h-1],f[i+(1<<h-1)][h-1]);
  rep(i,1,m) {
    int l=read(), r=read(), k=read(), g=2*k-1;
    int l0=l, r0=r, x=r+1;
    while(l0<=r0) {
      int mid=l0+r0>>1;
      if(p[mid][a[l]^1]!=p[l][a[l]^1]) x=mid,r0=mid-1;
      else l0=mid+1;
    }
    int ml=max(x-l,qry(x,r));
    if(ml<k) {printf("%d\n",r-l+1); continue;}
    int p0=p[r][0]-p[l-1][0], p1=p[r][1]-p[l-1][1];
    int d=((p0-p1)%g+g)%g; if(d<g-d) d=g-d;
    printf("%d\n",d-1);
  }
  return 0;
}
0