40分求助

P1042 [NOIP2003 普及组] 乒乓球

tmcz202070101 @ 2024-04-27 18:46:04

#include<bits/stdc++.h>
#include <algorithm>
using namespace std;
int main()
{
    int a[100000],w,l,n=0,f[2]={11,21};
    char shuru;
    while(1)
    {
        cin>>shuru;
        if(shuru=='E') break;
        else if(shuru=='W') a[n++]=1;
        else if(shuru=='L') a[n++]=0;
    }
    for(int k=0;k<2;k++){
        int w=0,l=0;
        for(int i=0;i<n;i++)
        {
            w+=a[i];l+=1-a[i];
            if((max(w,l)>=f[k]) && abs(w-1)>=2)
            {
                cout<<w<<":"<<l<<endl;
                w=l=0;
            }
        }
        cout<<w<<":"<<l<<endl;
        cout<<endl;
    }
    return 0;
}

by Jason_Ming @ 2024-04-27 19:19:41

数字1和字母l搞混了。 把 if((max(w,l)>=f[k]) && abs(w-1)>=2) 改成 if((max(w,l)>=f[k]) && abs(w-l)>=2)


|