QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#566816#9313. Make Maxmardog666WA 29ms5404kbC++171.0kb2024-09-16 02:00:142024-09-16 02:00:14

Judging History

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

  • [2024-09-18 15:56:24]
  • hack成功,自动添加数据
  • (/hack/836)
  • [2024-09-16 02:00:14]
  • 评测
  • 测评结果:WA
  • 用时:29ms
  • 内存:5404kb
  • [2024-09-16 02:00:14]
  • 提交

answer

#include<bits/stdc++.h> 
#define int long long 
using namespace std;   
const int N=2e5+10;
typedef pair<int,int> PII;
signed main() 
{  
    ios::sync_with_stdio(0);  
    cin.tie(0);  
    cout.tie(0);  
    int _=1;  
    cin>>_;  
    while(_--) 
	{  
		int n;
		cin>>n;
		int a[N];
		memset(a,0,sizeof(a));
		for(int i=0;i<n;i++) cin>>a[i];
		stack<PII> st;
		st.push({a[0],0});
		int ans=0;
		for(int i=1;i<n;i++)
		{
			if(st.top().first>a[i])
			{
				PII t;
				t.first=a[i];
				t.second=i;
				st.push(t);
			}
			else if(st.top().first<a[i])
			{
				PII t;
				bool f=1;
				while(!st.empty()&&f)
				{
					f=0;
					if(st.top().first<a[i])
					{
						f=1;
						t=st.top();
						st.pop();
						ans+=i-t.second;
					}
				}
				if(st.size())
				{
					if(st.top().first==a[i])continue;
				}
				st.push({a[i],t.second});
			}
		}
		while(st.size()>1)
		{
			PII t;
			st.pop();
			ans+=n-t.second;
		}
		cout<<ans<<endl;
	}
    return 0;  
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 5144kb

input:

4
2
1 2
2
2 2
7
1 1 1 2 2 2 2
3
1 2 3

output:

1
0
3
3

result:

ok 4 number(s): "1 0 3 3"

Test #2:

score: -100
Wrong Answer
time: 29ms
memory: 5404kb

input:

2
198018
875421126 585870339 471894633 383529988 625397685 944061047 704695631 105113224 459022561 760848605 980735314 847376362 980571959 329939331 644635272 326439858 752879510 837384394 175179068 182094523 397239381 1199016 185143405 279638454 252374970 822030887 860312140 137248166 993229443 164...

output:

5660444
5406991

result:

wrong answer 1st numbers differ - expected: '4084978', found: '5660444'