3 条题解

  • 1
    @ 2024-10-11 20:00:06

    给点点赞吧! 保对!

    #include<bits/stdc++.h>
    using namespace std;
    char str[101010];
    int cnt=0;
    void shou(int n){
    	int w=0,l=0;
    	for(int i=0;i<cnt;i++){
    		if(str[i]=='W') w++;
    		if(str[i]=='L') l++;
    		if((w>=n || l>=n)&&abs(w-l)>=2){
    			cout<<w<<":"<<l<<endl;
    			w=0;
    			l=0;
    		}
    	}
    	cout<<w<<":"<<l<<endl;
    }
    int main(){
    	char x;
    	while(cin>>x&&x!='E'){
    		if(x=='W' || x=='L'){
    		str[cnt++]=x;
    		}
    }
    	shou(11);
    	cout<<endl;
    	shou(21);
    	return 0;
    }
    

    信息

    ID
    395
    时间
    1000ms
    内存
    128MiB
    难度
    7
    标签
    递交数
    129
    已通过
    26
    上传者