QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#155409#6695. Matchingucup-team1001AC ✓53ms18168kbC++231.4kb2023-09-01 16:38:142023-09-01 16:38:15

Judging History

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

  • [2023-09-01 16:38:15]
  • 评测
  • 测评结果:AC
  • 用时:53ms
  • 内存:18168kb
  • [2023-09-01 16:38:14]
  • 提交

answer

#include<bits/stdc++.h>
#define ll long long
#define rep(i,l,r) for(int i = l; l <= r ? i <= r : i >= r;l <= r ? ++i : --i)
#define irep(i,l,r) for(int i = l; i <= r; ++i)
#define drep(i,r,l) for(int i = r; i >= l; --i)
#define yn(x) puts(x?"NO":"YES")

using namespace std;
const int N = 500999;
const int mod = 1000000007;
const int itinf = 1000000000;
const long long llinf = 100000000000000000;

inline ll read(){
	ll s=0,w=1;
	char chcc=getchar();
	while(chcc<'0'||chcc>'9'){if(chcc=='-')w=-1;chcc=getchar();}
	while(chcc>='0'&&chcc<='9') s=s*10+chcc-'0',chcc=getchar();
	return s*w;
}

inline char rc(){
	char readch = getchar();
	while(!('0'<= readch && readch <= '9' || 'A' <= readch && readch <= 'Z' || 'a' <= readch && readch <= 'z'))readch = getchar();
	return readch;
}
map<int,int>mp;
int cur = 0, a[N];
vector<int>e[N];
int main(){
	int T = read();
	while(T --){
		int n = read();
		mp.clear();
		cur = 0;
		irep(i,1,n)a[i] = read();
		irep(i,1,n){
			if(mp.find(a[i] - i) == mp.end())
				mp[a[i] - i] = ++ cur;
		}
		irep(i,1,cur)e[i].clear();
		irep(i,1,n){
			e[mp[a[i]-i]].push_back(a[i]);
		}
		ll ans = 0;
		irep(i,1,cur){
			sort(e[i].begin(),e[i].end());
			for(int j = e[i].size() - 1; j > 0; j -= 2){
				int x = e[i][j], y = e[i][j-1];
				if(x + y >= 0)ans += x+y;
			}
		}
		cout<<ans<<endl;
		
	}
	return 0;
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

3
9
3 -5 5 6 7 -1 9 1 2
3
-5 -4 -3
3
1 10 100

output:

30
0
0

result:

ok 3 number(s): "30 0 0"

Test #2:

score: 0
Accepted
time: 53ms
memory: 18168kb

input:

5504
9
-1 -7 -6 -5 -4 -3 5 -1 0
5
999999995 999999993 999999995 999999995 999999995
5
3 -6 -5 -4 -2
4
-8 2 3 -5
4
-2 -1 0 1
9
-4 -9 3 -1 -1 -5 2 -3 -5
7
-1 -2 1 2 3 4 3
4
-2 5 2 -4
10
2 4 1 -3 -2 4 5 -3 0 -4
6
-1 0 1 2 4 -3
5
-4 -3 -2 -1 0
4
-1 0 1 2
8
1 0 -4 -1 0 -5 -3 -5
2
5 6
8
-4 -3 -2 -1 0 1 2 ...

output:

4
1999999988
0
5
1
1
11
0
9
3
0
3
0
11
6
9
0
1999999989
13
1
11
7
1999999981
40
0
11
0
6
0
0
7
9
1
15
4
3
0
7
23
0
5
1999999997
0
3
5999999976
3
16
5999999943
5999999933
5
0
11
0
10
12
0
6
8
3999999982
12
0
7
0
0
3
3
0
1999999994
3999999972
1
0
16
0
0
0
7
2
0
8
0
5999999964
16
0
1
1999999995
28
0
54...

result:

ok 5504 numbers