QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#573781#9313. Make Maxyuk11119WA 134ms8712kbC++171.8kb2024-09-18 19:58:082024-09-18 19:58:09

Judging History

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

  • [2024-09-18 19:58:09]
  • 评测
  • 测评结果:WA
  • 用时:134ms
  • 内存:8712kb
  • [2024-09-18 19:58:08]
  • 提交

answer

#include <iostream>
#include <cstring>
#include <vector>
#include <algorithm>

using namespace std;

typedef pair<int, int> PII;
const int N = 200010;

int T, n, a[N];
vector<PII> b;
PII e[N];
int l[N], r[N], idx;

// 初始化
void init()
{
    //0是左端点,1是右端点
    r[0] = 1, l[1] = 0;
    idx = 2;
}

// 在节点a的右边插入一个数x
void insert(int a, int x, int c)
{
    e[idx] = {x, c};
    l[idx] = a, r[idx] = r[a];
    l[r[a]] = idx, r[a] = idx ++ ;
}

// 删除节点a
void remove(int a)
{
    l[r[a]] = l[a];
    r[l[a]] = r[a];
}

bool cmp(const PII &aa, const PII &bb)
{
	if(aa.first == bb.first) return aa.second < bb.second;
	return aa.first < bb.first;
}


int main()
{
	cin >> T;
	while(T--)
	{
		memset(a, 0, sizeof(a));
		init();
		b.clear();
		int ans = 0;
		
		cin >> n;
		for(int i = 0; i < n; i++)
			cin >> a[i];
		
		for(int i = 0; i < n; i++)
		{
			int j = i;
			while(j < n && a[i] == a[j]) j++;
			b.push_back({a[i], idx});
			insert(l[1], a[i], j - i);
			i = j - 1;
		}
		
		sort(b.begin(), b.end(), cmp);
		
		//for(int i = r[0]; i != 1; i = r[i]) cout << e[i].first << ' ' << e[i].second << '|';
		
		for(auto it : b)
		{
			int ver = it.second;
			PII &cur = e[ver], &ll = e[l[ver]], &rr = e[r[ver]];
			if(ll.first > cur.first && rr.first > cur.first)
			{
				ans += cur.second;
				if(ll.first < rr.first)
					ll.second += cur.second;
				else
					rr.second += cur.second;
				remove(ver);
			}
			else if(ll.first > cur.first)
			{
				ans += cur.second;
				ll.second += cur.second;
				remove(ver);
			}
			else if(rr.first > cur.first)
			{
				ans += cur.second;
				rr.second += cur.second;
				remove(ver);
			}
			
		}
		
		cout << ans << endl;
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 0
Accepted
time: 134ms
memory: 8640kb

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:

4084978
4130372

result:

ok 2 number(s): "4084978 4130372"

Test #3:

score: -100
Wrong Answer
time: 103ms
memory: 8712kb

input:

2
195768
3086 1582 7854 5577 5243 2734 8054 4805 5686 7065 5555 2410 6240 7589 2889 3745 8094 9147 9438 1252 5497 5786 6655 4437 3933 2579 5722 9512 3117 1742 5362 2068 1853 4069 9231 1126 3991 420 2571 5517 3063 7279 8085 6111 5503 5980 50 6003 244 9684 6343 6517 1598 5223 5520 982 3932 1093 1149 7...

output:

3024859
2938677

result:

wrong answer 1st numbers differ - expected: '3061429', found: '3024859'