QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#747516#9565. Birthday GiftacansaidongWA 0ms3528kbC++202.5kb2024-11-14 17:22:472024-11-14 17:22:47

Judging History

你现在查看的是最新测评结果

  • [2024-11-14 17:22:47]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3528kb
  • [2024-11-14 17:22:47]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long
#define double long double
using namespace std;
 
const int N=2e5+10;
const int M=0x3f3f3f3f3f3f3f3f;
int a[N];


signed main()
{
	ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
	int T;cin>>T;
	while(T--)
	{
		string s,ss,sss;cin>>s;int ans=M;
        int n=s.length();
        // for(int i=0;i<n;i++)
        // {
        //     if(((s[i-1]!='0'||s[i-1]!='1')&&(s[i]!='0'||s[i]!='1'))&&s[i-1]==s[i]) 
        //     {
        //         int x=i-1,y=i;
        //         while(x>=0&&y<n)
        //         {
        //             if(s[x]==s[y]&&(s[x]=='0'||s[x]=='1')) s[x]='4',s[y]='4';
        //             else break;
        //             x--;y++;
        //             while(x>=0&&s[x]>'1') x--;
        //             while(y<=n&&s[y]>'1') y++;
        //         }
        //     }
        //     // cerr<<s<<"\n";
        // }
        // for(int i=0;i<n;i++) 
        // {
        //     if(s[i]!=4) sss=sss+s[i];
        // }
        // s=sss;
        // n=s.size();
        
        for(int i=0;i<n;i++)
        {
            if((s[i-1]!='4'&&s[i]!='4'&&(s[i-1]=='2'||s[i]=='2'))||s[i-1]==s[i]) 
            {
                int x=i-1,y=i;
                while(x>=0&&y<n)
                {
                    if(s[x]==s[y]&&s[x]!='4') s[x]='4',s[y]='4';
                    else if(s[x]=='2'||s[y]=='2') s[x]='4',s[y]='4';
                    else break;
                    x--;y++;
                    while(x>=0&&s[x]=='4') x--;
                    while(y<=n&&s[y]=='4') y++;
                }
            }
            // cerr<<s<<"\n";
        }
        int cnt=0;
        for(auto i:s)
        {
            if(i!='4') cnt++;
        }
        ans=min(ans,cnt);

        s=sss;
        for(int i=n-1;i>=1;i--)
        {
            if((s[i-1]!='4'&&s[i]!='4'&&(s[i-1]=='2'||s[i]=='2'))||s[i-1]==s[i]) 
            {
                int x=i-1,y=i;
                while(x>=0&&y<n)
                {
                    if(s[x]==s[y]&&s[x]!='4') s[x]='4',s[y]='4';
                    else if(s[x]=='2'||s[y]=='2') s[x]='4',s[y]='4';
                    else break;
                    x--;y++;
                    while(x>=0&&s[x]=='4') x--;
                    while(y<=n-1&&s[y]=='4') y++;
                }
            }
        }
        cnt=0;
        for(auto i:s)
        {
            if(i!='4') cnt++;
        }
        ans=min(ans,cnt);
        

        cout<<ans<<"\n";
	}
	
	return 0;
}

详细

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3528kb

input:

5
0110101
01020102
0000021111
1012121010
0100202010

output:

0
0
0
0
0

result:

wrong answer 1st numbers differ - expected: '3', found: '0'