답안 #703924

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
703924 2023-03-01T01:51:51 Z chenyan Simfonija (COCI19_simfonija) C++17
11 / 110
2 ms 596 KB
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define pii pair<int,int>
#define ff first
#define ss second
#define all(x) x.begin(),x.end()
#define pb emplace_back
#define N 510
int dp[N],a[N],b[N],p[N];
vector<int>v;
signed main(){
	ios::sync_with_stdio(0);
	cin.tie(0);
	int n,m,i,k,j;
	cin>>n>>k;
	for(i=1;i<=n;i++)cin>>a[i];
	for(i=1;i<=n;i++)cin>>b[i];
	for(i=1;i<=n;i++)a[i]=b[i]-a[i];
	sort(a+1,a+n+1);
	for(i=1;i<=n;i++)p[i]=a[i]+p[i-1];
	int l=1,r=1;
	int ans=1e18;
	for(i=1;i<=n;i++){
		while(r<n&&a[r+1]<=a[i]+k)r++;
		while(a[l]<a[i])l++;
		ans=min(a[i]*(l-1)-p[l-1]+(p[n]-p[r])-(a[i]+k)*(n-r),ans);
	}
	cout<<ans<<'\n';
}

Compilation message

simfonija.cpp: In function 'int main()':
simfonija.cpp:15:8: warning: unused variable 'm' [-Wunused-variable]
   15 |  int n,m,i,k,j;
      |        ^
simfonija.cpp:15:14: warning: unused variable 'j' [-Wunused-variable]
   15 |  int n,m,i,k,j;
      |              ^
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 320 KB Output is correct
2 Correct 1 ms 212 KB Output is correct
3 Correct 1 ms 212 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 592 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 596 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 592 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 592 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 596 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 592 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 588 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 596 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -