QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#576851#9313. Make MaxlxpyydsWA 0ms3512kbC++14698b2024-09-19 22:59:072024-09-19 22:59:08

Judging History

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

  • [2024-09-19 22:59:08]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3512kb
  • [2024-09-19 22:59:07]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define int long long
signed main()
{
	int t;
	cin>>t;
	while(t--)
	{
		int n;
		cin>>n;
		int op=0;
		vector<int> dp(n+2);
		dp[0]=INT_MAX;dp[n+1]=INT_MAX;
		map<int,int> mp;
		map<int,int> kp;
		for(int i=1;i<=n;i++)
		{
			cin>>dp[i];
			mp[dp[i]]=i;
			kp[dp[i]]=1;
		}
		for (auto it = mp.begin(); it != mp.end(); ++it) {
			if (next(it) == mp.end()) {
        break;
    }
        int x=it->first;int y=it->second;
        if(dp[y-1]<dp[y+1]){
        	kp[dp[y-1]]+=kp[dp[y]];
		}else{
			kp[dp[y+1]]+=kp[dp[y]];
		}
		op+=kp[dp[y]];
        dp.erase(dp.begin()+y-1);
    }
    cout<<op<<endl;
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

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

output:

1
0
2
2

result:

wrong answer 3rd numbers differ - expected: '3', found: '2'