結果

問題 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  
実行時間 101 ms / 2,000 ms
コード長 1,449 bytes
コンパイル時間 2,044 ms
コンパイル使用メモリ 201,080 KB
実行使用メモリ 23,424 KB
最終ジャッジ日時 2024-11-21 19:00:35
合計ジャッジ時間 12,295 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 23 ms
15,872 KB
testcase_02 AC 57 ms
12,800 KB
testcase_03 AC 94 ms
20,608 KB
testcase_04 AC 18 ms
8,320 KB
testcase_05 AC 39 ms
15,488 KB
testcase_06 AC 51 ms
12,800 KB
testcase_07 AC 31 ms
20,352 KB
testcase_08 AC 52 ms
20,736 KB
testcase_09 AC 51 ms
9,088 KB
testcase_10 AC 57 ms
9,728 KB
testcase_11 AC 25 ms
11,812 KB
testcase_12 AC 32 ms
19,092 KB
testcase_13 AC 51 ms
11,148 KB
testcase_14 AC 39 ms
16,924 KB
testcase_15 AC 15 ms
7,996 KB
testcase_16 AC 65 ms
14,276 KB
testcase_17 AC 68 ms
16,976 KB
testcase_18 AC 54 ms
12,008 KB
testcase_19 AC 37 ms
18,488 KB
testcase_20 AC 18 ms
10,228 KB
testcase_21 AC 36 ms
19,256 KB
testcase_22 AC 51 ms
10,408 KB
testcase_23 AC 5 ms
6,816 KB
testcase_24 AC 29 ms
7,936 KB
testcase_25 AC 22 ms
7,916 KB
testcase_26 AC 38 ms
16,860 KB
testcase_27 AC 64 ms
20,612 KB
testcase_28 AC 32 ms
19,280 KB
testcase_29 AC 4 ms
6,820 KB
testcase_30 AC 30 ms
7,904 KB
testcase_31 AC 54 ms
15,580 KB
testcase_32 AC 64 ms
18,124 KB
testcase_33 AC 32 ms
14,288 KB
testcase_34 AC 41 ms
8,100 KB
testcase_35 AC 48 ms
21,484 KB
testcase_36 AC 44 ms
6,816 KB
testcase_37 AC 48 ms
12,784 KB
testcase_38 AC 56 ms
8,172 KB
testcase_39 AC 25 ms
8,284 KB
testcase_40 AC 19 ms
16,856 KB
testcase_41 AC 94 ms
23,368 KB
testcase_42 AC 96 ms
23,348 KB
testcase_43 AC 96 ms
23,372 KB
testcase_44 AC 85 ms
23,280 KB
testcase_45 AC 92 ms
23,324 KB
testcase_46 AC 82 ms
23,292 KB
testcase_47 AC 101 ms
23,272 KB
testcase_48 AC 96 ms
23,296 KB
testcase_49 AC 84 ms
23,264 KB
testcase_50 AC 95 ms
23,404 KB
testcase_51 AC 77 ms
23,400 KB
testcase_52 AC 78 ms
23,296 KB
testcase_53 AC 82 ms
23,296 KB
testcase_54 AC 81 ms
23,424 KB
testcase_55 AC 77 ms
23,296 KB
testcase_56 AC 75 ms
23,296 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