CodeForces - 538A 폭력
3241 단어 폭력.
NO
[제목]
문자열을 하나 주고 문자열을 빼서 나머지는 CODEFORCES로 만들 수 있는지 물어보기;
하나는 빼야 돼.
【해법】
포스1, 포스2로 절단점, 폭력을 기록하다.
비교적 멍청한 판법이 히히히히.
#include
#include
char s[105];
int cf[15];
int l;
int judge(int pos1,int pos2){
int pos=0;
if(l-(pos2-pos1+1)!=10) return 0;//
for(int i=0;il) break;
if(pos==0){
if(s[i]=='C') cf[pos++]=1;
else return 0;
}
else if(pos==1){
if(s[i]=='O') cf[pos++]=1;
else return 0;
}
else if(pos==2){
if(s[i]=='D') cf[pos++]=1;
else return 0;
}
else if(pos==3){
if(s[i]=='E') cf[pos++]=1;
else return 0;
}
else if(pos==4){
if(s[i]=='F') cf[pos++]=1;
else return 0;
}
else if(pos==5){
if(s[i]=='O') cf[pos++]=1;
else return 0;
}
else if(pos==6){
if(s[i]=='R') cf[pos++]=1;
else return 0;
}
else if(pos==7){
if(s[i]=='C') cf[pos++]=1;
else return 0;
}
else if(pos==8){
if(s[i]=='E') cf[pos++]=1;
else return 0;
}
else if(pos==9){
if(s[i]=='S') return 1;
else return 0;
}
}
return 0;
}
int main(){
scanf("%s",s);
int flag=0;
l=strlen(s);
for(int i=0;i
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[Wunder Fund Round 2016(Div 1 + Div 2 combined) B] [폭력 욕심] Guess the Permutation 전체 배열 a[i] [j]=min(p[i],ptime limit per test memory limit per test input standard input standard output Bob has a permutation of integers from 1 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.