Submission #1257544


Source Code Expand

#include<bits/stdc++.h>
using namespace std;
#define SS 500000
int f[SS+10][30];
char str[SS+10];
int g[SS+10][19];
int main(){
	scanf("%s",str);
	int len=strlen(str);
	memset(f,-1,sizeof(f));
	memset(g,-1,sizeof(g));
	for(int i=len-1;i>=0;i--){
		int sr=str[i]-'a';
		f[i][sr]=i;
		for(int j=sr+1;j<=26;j++)f[i][j]=f[f[i][j-1]+1][j-1];
		g[i][0]=f[i][26];
		//printf("%d %d\n",i,f[i][26]);
		for(int j=1;j<=18;j++)g[i][j]=g[g[i][j-1]+1][j-1];
		for (int j=0; j<sr; j++) f[i][j]=f[g[i][0]+1][j];
	}
	int q;scanf("%d",&q);
	for(int i=1;i<=q;i++){
		int l,r;scanf("%d%d",&l,&r);
		l--,r--;
		for (i=18; i>=0; i--) if (g[l][i]!=-1&&g[l][i]<=r) l=g[l][i];
		if(r==l)printf("Yes\n");
		else printf("No\n");
	}
}

Submission Info

Submission Time
Task C - Robot and String
User yingpingan
Language C++14 (GCC 5.4.1)
Score 0
Code Size 736 Byte
Status RE
Exec Time 511 ms
Memory 98688 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:8:17: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%s",str);
                 ^
./Main.cpp:21:22: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  int q;scanf("%d",&q);
                      ^
./Main.cpp:23:30: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   int l,r;scanf("%d%d",&l,&r);
                              ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 1300
Status
RE × 3
RE × 67
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt, 1_14.txt, 1_15.txt, 1_16.txt, 1_17.txt, 1_18.txt, 1_19.txt, 1_20.txt, 1_21.txt, 1_22.txt, 1_23.txt, 1_24.txt, 1_25.txt, 1_26.txt, 1_27.txt, 1_28.txt, 1_29.txt, 1_30.txt, 1_31.txt, 1_32.txt, 1_33.txt, 1_34.txt, 1_35.txt, 1_36.txt, 1_37.txt, 1_38.txt, 1_39.txt, 1_40.txt, 1_41.txt, 1_42.txt, 1_43.txt, 1_44.txt, 1_45.txt, 1_46.txt, 1_47.txt, 1_48.txt, 1_49.txt, 1_50.txt, 1_51.txt, 1_52.txt, 1_53.txt, 1_54.txt, 1_55.txt, 1_56.txt, 1_57.txt, 1_58.txt, 1_59.txt, 1_60.txt, 1_61.txt, 1_62.txt, 1_63.txt
Case Name Status Exec Time Memory
0_00.txt RE 121 ms 96384 KB
0_01.txt RE 120 ms 96384 KB
0_02.txt RE 120 ms 96384 KB
1_00.txt RE 139 ms 96768 KB
1_01.txt RE 139 ms 96768 KB
1_02.txt RE 411 ms 97664 KB
1_03.txt RE 319 ms 97152 KB
1_04.txt RE 416 ms 98176 KB
1_05.txt RE 348 ms 97408 KB
1_06.txt RE 432 ms 97792 KB
1_07.txt RE 392 ms 97792 KB
1_08.txt RE 363 ms 97792 KB
1_09.txt RE 311 ms 97536 KB
1_10.txt RE 316 ms 97664 KB
1_11.txt RE 403 ms 98432 KB
1_12.txt RE 421 ms 98560 KB
1_13.txt RE 256 ms 97152 KB
1_14.txt RE 435 ms 98688 KB
1_15.txt RE 344 ms 97920 KB
1_16.txt RE 397 ms 98304 KB
1_17.txt RE 320 ms 97664 KB
1_18.txt RE 327 ms 97664 KB
1_19.txt RE 426 ms 98176 KB
1_20.txt RE 421 ms 98432 KB
1_21.txt RE 368 ms 97920 KB
1_22.txt RE 291 ms 97280 KB
1_23.txt RE 313 ms 97408 KB
1_24.txt RE 337 ms 97408 KB
1_25.txt RE 454 ms 98432 KB
1_26.txt RE 375 ms 97664 KB
1_27.txt RE 430 ms 98176 KB
1_28.txt RE 511 ms 98688 KB
1_29.txt RE 389 ms 97792 KB
1_30.txt RE 463 ms 98432 KB
1_31.txt RE 419 ms 98176 KB
1_32.txt RE 336 ms 97408 KB
1_33.txt RE 225 ms 96768 KB
1_34.txt RE 353 ms 98048 KB
1_35.txt RE 238 ms 97024 KB
1_36.txt RE 415 ms 98560 KB
1_37.txt RE 321 ms 97792 KB
1_38.txt RE 427 ms 98688 KB
1_39.txt RE 428 ms 98688 KB
1_40.txt RE 293 ms 97408 KB
1_41.txt RE 411 ms 98304 KB
1_42.txt RE 420 ms 98432 KB
1_43.txt RE 419 ms 98432 KB
1_44.txt RE 415 ms 98432 KB
1_45.txt RE 453 ms 98432 KB
1_46.txt RE 430 ms 98432 KB
1_47.txt RE 251 ms 96896 KB
1_48.txt RE 474 ms 98688 KB
1_49.txt RE 454 ms 98560 KB
1_50.txt RE 467 ms 98048 KB
1_51.txt RE 413 ms 98176 KB
1_52.txt RE 424 ms 98176 KB
1_53.txt RE 288 ms 97024 KB
1_54.txt RE 407 ms 98176 KB
1_55.txt RE 443 ms 98432 KB
1_56.txt RE 334 ms 97408 KB
1_57.txt RE 354 ms 97536 KB
1_58.txt RE 248 ms 96768 KB
1_59.txt RE 304 ms 97024 KB
1_60.txt RE 311 ms 97280 KB
1_61.txt RE 343 ms 97664 KB
1_62.txt RE 323 ms 97536 KB
1_63.txt RE 264 ms 97024 KB