QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#744018#5420. InscryptionHHSWA 412ms3804kbC++141.3kb2024-11-13 20:36:072024-11-13 20:36:13

Judging History

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

  • [2024-11-13 20:36:13]
  • 评测
  • 测评结果:WA
  • 用时:412ms
  • 内存:3804kb
  • [2024-11-13 20:36:07]
  • 提交

answer

#include <bits/stdc++.h> 
using namespace std;
using ll = long long;

void solve(){
	ll n;
	cin>>n;
	ll cnt=0;
	ll res1=1,res2=1;
	ll s=0;
	vector<ll>a(n+10),minn(n+10);
	int flag=1;
	for(ll i=1;i<=n;i++)
	{
		cin>>a[i];
		if(a[i]==1)
		{
			s++;
			cnt++;
			minn[i]=n+10;
		}
		else if(a[i]==-1)
		{
			s--;
			cnt--;
			minn[i]=cnt;
		}
		else minn[i]=n+10,s++;
		if(s<0&&flag)
		{
			cout<<-1<<endl;
			flag=0;
		}
	}
	if(!flag)
	{
		return ;
	}
	ll point =0;
	for(ll i=n;i>=1;i--)if(!point&&a[i]==-1)point=i;
	for(ll i=n-1;i>=1;i--)
	{
		
		minn[i]=min(minn[i],minn[i+1]);
	}
	ll sum=0;
	//	cout<<point<<endl;
	cnt=0;
	for(ll i=1;i<=point;i++)
	{
		if(a[i]==0)
		{
			if(sum+1<=minn[i])
			{
				res2--;
				sum++;
				cnt--;
			}
			else{
				cnt++;
				res1++;res2++;
				sum--;
			}
		}
		else if(a[i]==1)cnt++,res1++,res2++;
		else cnt--,res2--;
	}
	//cout<<cnt<<endl;
	for(ll i=point+1;i<=n;i++)
	{
		if(a[i]==0)
		{
			if(cnt>=1)
			{
				cnt--;
				res2--;
			}
			else{
				cnt++;
				res1++;
				res2++;
			}
		}
		else if(a[i]==1)
		{
			cnt++;
			res1++;
			res2++;
		}
		
	}
	cout<<res1/__gcd(res1,res2)<<" "<<res2/__gcd(res1,res2)<<endl;
}

int main(){
	ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
	ll t; 
	cin >> t;
	while(t--)
	{
		solve();
	}
}


詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 3804kb

input:

6
7
1 1 1 -1 1 1 -1
4
1 0 -1 0
4
0 -1 -1 0
1
0
2
0 0
1
-1

output:

3 2
3 1
-1
1 1
2 1
-1

result:

ok 6 lines

Test #2:

score: 0
Accepted
time: 412ms
memory: 3584kb

input:

1000000
1
1
1
-1
1
1
1
1
1
1
1
1
1
-1
1
-1
1
0
1
0
1
1
1
0
1
-1
1
0
1
1
1
0
1
1
1
0
1
1
1
0
1
0
1
0
1
1
1
-1
1
1
1
1
1
-1
1
0
1
1
1
0
1
-1
1
0
1
-1
1
1
1
-1
1
0
1
1
1
1
1
-1
1
0
1
-1
1
-1
1
-1
1
-1
1
0
1
0
1
-1
1
0
1
-1
1
0
1
0
1
0
1
0
1
0
1
-1
1
1
1
0
1
0
1
1
1
0
1
-1
1
1
1
1
1
0
1
1
1
1
1
1
1
0
1
...

output:

1 1
-1
1 1
1 1
1 1
1 1
-1
-1
1 1
1 1
1 1
1 1
-1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
-1
1 1
1 1
-1
1 1
1 1
1 1
-1
1 1
-1
1 1
-1
1 1
1 1
1 1
-1
1 1
-1
-1
-1
-1
1 1
1 1
-1
1 1
-1
1 1
1 1
1 1
1 1
1 1
-1
1 1
1 1
1 1
1 1
1 1
-1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
-1
-1
1 1
1 1
-1
1 1
1 1
1 1
1 1
-1
1 1
1 1
1 ...

result:

ok 1000000 lines

Test #3:

score: -100
Wrong Answer
time: 139ms
memory: 3556kb

input:

181249
6
1 0 -1 0 1 0
4
1 -1 -1 -1
8
-1 0 0 0 1 -1 1 1
3
0 1 0
6
1 0 -1 1 -1 0
4
1 -1 -1 -1
9
0 1 0 -1 -1 0 -1 0 1
1
-1
3
0 -1 1
5
0 0 1 -1 1
3
1 -1 0
6
-1 0 0 -1 0 1
8
1 -1 -1 -1 0 1 -1 0
2
0 0
3
-1 1 0
3
0 -1 -1
10
0 1 0 -1 1 1 0 -1 1 0
3
1 0 0
9
1 -1 1 -1 0 -1 0 0 0
3
0 1 0
3
-1 0 0
7
-1 0 -1 -1 ...

output:

4 1
-1
-1
3 2
4 1
-1
3 1
-1
3 2
2 1
3 2
-1
-1
2 1
-1
-1
6 1
3 2
3 1
3 2
-1
-1
-1
-1
2 1
5 3
-1
2 1
2 1
-1
3 2
5 1
1 1
-1
3 2
-1
1 1
-1
2 1
1 1
-1
1 1
-1
1 1
3 2
-1
-1
-1
-1
3 2
5 2
1 1
-1
3 1
-1
-1
1 1
-1
6 1
3 2
-1
3 2
4 3
2 1
-1
5 3
3 1
6 1
-1
2 1
5 4
-1
1 1
-1
3 1
-1
-1
5 3
1 1
2 1
5 2
-1
3 1
4 3...

result:

wrong answer 28th lines differ - expected: '5 4', found: '2 1'