답안 #921597

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
921597 2024-02-04T07:44:46 Z vjudge1 Lightning Rod (NOI18_lightningrod) C++17
0 / 100
195 ms 34052 KB
#include <bits/stdc++.h>
#define F first 
#define S second
#define ent '\n'
#define int long long
#define pb push_back

typedef long double ld;
typedef long long ll;
using namespace std;

const int maxn = 1e6+12;
const int T = 0;
const int mod = 1e9+7;

int n,m,k,x,y,l,r;
int a[maxn],b[maxn],p[maxn],pref[maxn],fact[maxn];

void solve(){
	cin>>n;
	int cnt=0;
	set<int>st;
	for(int i=1;i<=n;i++){
		cin>>a[i];
		st.insert(a[i]);
	}
	for(int i=1;i<=n;i++){
		cin>>b[i];
		cnt+=(b[i]==1);
	}
	if(cnt==n){
		cout<<st.size();
		return;
	}
//	abs(x[i] - x[j]) <= abs(y[i] - y[j]);
	int cal=0;
	map<int,int>mp;
	for(int i=1;i<=n;i++){
		if(!mp[i]){
			cal++;
			for(int j=i+1;j<=n;j++){
				if(abs(a[i]-a[j]) <= (b[i]-b[j])){
					mp[j]=1;
				}
			}
		}
	}
	cout<<cal;
}	
//BEKSULTAN TOP
signed main(){	
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
	int t=1;
	if(T)cin>>t;
	while(t--)solve();
} 
# 결과 실행 시간 메모리 Grader output
1 Incorrect 172 ms 34052 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 4444 KB Output is correct
2 Correct 1 ms 4440 KB Output is correct
3 Correct 1 ms 4440 KB Output is correct
4 Incorrect 1 ms 4444 KB Output isn't correct
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 4444 KB Output is correct
2 Correct 1 ms 4440 KB Output is correct
3 Correct 1 ms 4440 KB Output is correct
4 Incorrect 1 ms 4444 KB Output isn't correct
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 4444 KB Output is correct
2 Correct 1 ms 4440 KB Output is correct
3 Correct 1 ms 4440 KB Output is correct
4 Incorrect 1 ms 4444 KB Output isn't correct
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 4444 KB Output is correct
2 Correct 1 ms 4440 KB Output is correct
3 Correct 1 ms 4440 KB Output is correct
4 Incorrect 1 ms 4444 KB Output isn't correct
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 195 ms 33944 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 172 ms 34052 KB Output isn't correct
2 Halted 0 ms 0 KB -