Submission #1119742

#TimeUsernameProblemLanguageResultExecution timeMemory
1119742vjudge1Count Squares (CEOI19_countsquares)C++17
47 / 100
4062 ms62024 KiB
#include<bits/stdc++.h>
#define ll long long
#define pb push_back
#define int long long
#define tin long long 
#define db double
#define F first
#define S second
#define yes "YES"
#define no "NO"

using namespace std;

int a[100000], N = 2e6 + 5, b[100000];
int mn = INT_MAX, mx = INT_MAX;

void solve(){
	int n, m, ans = 0;
	cin >> n >> m;
	vector <int> v;
	multiset <int> s;
	for(int i = 1; i <= n ; i++){
		cin >> a[i];
	} 
	for(int i = 1 ; i <= m ; i++){
		cin >> b[i];
	}
	for(int i = 1; i <= n ; i ++){
		for(int j = i + 1 ; j <= n ; j ++){
			v.pb(abs(a[i] - a[j]));
		}
	}
	for(int i = 1; i <= m ; i ++){
		for(int j = i + 1 ; j <= m ; j ++){
			s.insert(abs(b[i] - b[j]));
		}
	}
	for(int i = 0; i <= (int)v.size() - 1; i ++){
		if(s.find(v[i]) != s.end()) ans += s.count(v[i]);
	}
	cout << ans;
}

signed main(){
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	int t = 1;
	//cin >> t;
	while(t--){
		solve();
	}
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...