답안 #1027731

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1027731 2024-07-19T09:31:52 Z Muhammet Fireworks (APIO16_fireworks) C++17
0 / 100
2 ms 4696 KB
#include <bits/stdc++.h>
using namespace std;

#define ll long long int
#define sz(x) (int)x.size()
#define ff first
#define ss second

const ll N = 300005;
const ll M = 1e9 + 7;

int T, n, m, a[N], b[N], vis[N];

int main(){
	ios::sync_with_stdio(false); cin.tie(0);

	cin >> n >> m;
	int s = 0;
	for(int i = 1; i <= n+m; i++){
		cin >> a[i] >> b[i];
		if(a[i] >= n+1 and vis[a[i]] == 0){
			s += a[i];
			vis[a[i]] = 1;
		}
		if(b[i] >= n+1 and vis[b[i]] == 0){
			s += b[i];
			vis[b[i]] = 1;
		}
	}

	s /= m;
	int ans = 0;
	for(int i = 0; i <= n+m; i++) vis[i] = 0;
	for(int i = 1; i <= n+m; i++){
		if(a[i] >= n+1 and vis[a[i]] == 0){
			ans += abs(a[i]-s);
			vis[a[i]] = 1;
		}
		if(b[i] >= n+1 and vis[b[i]] == 0){
			ans += abs(b[i]-s);
			vis[b[i]] = 1;
		}
	}

	cout << ans;

	return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 4696 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 2396 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 4696 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 4696 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -