RiseOJ는 solved.ac와 제휴 관계가 없습니다. 티어 아이콘 © solved.ac. solved.ac
포럼
COCI00515

Jarvis

Unrated 레이팅 미적용
난이도
1s
시간 제한
64MB
메모리 제한
0
맞았습니다!!
0
제출 수
0.0%
정답률
레이팅

의견: 0

설명

1 \(s / 64\) \(MB / 70\) points

Ivan sent \(N\) drone warriors to the final battle against Tony Stark, also known as Iron Man. Each drone

has a defined frequency, expressed as an integer number, on which it receives commands from Ivan

during the fight. Jarvis, the artificial intelligence developed by Toni, has to determine which

frequencies those are and thereby take control over as many drones as possible.
Jarvis knows the original factory values of the frequency for each drone, but the frequencies required

for each drone, unfortunately, have been changed in the meantime.
Jarvis has only one attempt. He can choose an integer number \(X\) and increase each of the factory

frequencies by \(X\) ( \(X\) may be negative as well). After that, Jarvis will take over control of each drone

whose modified factory frequencies and the one required by the specific drone is equal.
Write a program that will determine how much drone warriors Jarvis can take control over.

제약

In the test samples totally worth 40% of the points all absolute values of the frequencies will be less

than or equal to 10.

입력 형식

The first line contains the integer number \(N\) (1 ≤ \(N \le 100\,000\)), the number of drones from the task

statement.
In the second line there are \(N\) integers \(A\) {i} (-1 000 000 ≤ \(A\) ≤1 000 000) representing the factory

frequency values of the drone warrior.
In the third line there are \(N\) integers \(B\) {i} { }(-1 000 000 ≤ \(B\) _{i} ≤1 000 000) representing the required

frequency values of the drone warriors.

출력 형식

In the only line, print out the largest number of drone warriors Jarvis can take control over.

예제 1
입력
1
1
2

2
0 0
1 1

2
1 2
5 5
출력
output
output
1

2

1
설명

Explanation of the third example:
If we choose X = 3, the factory frequencies will be 4 and 5, respectively (1 + 3 and 2 + 3), then Jarvis would

take control only over the second drone warrior. If we choose X = 4, the factory frequencies will be 5 and 6 and

then Jarvis would only take control over the first drone warrior. There is also no X such that Jarvis

simultaneously takes control over both drone warriors.

문제 정보

생성자가 기록되지 않았습니다.

출처 COCI 2018/2019 Contest 5

평가 및 의견

Jarvis

개요
출제자 난이도 Unrated 레이팅 미적용 의견 0 / 50 공개 집계 (커뮤니티 난이도, 주요 주제, 품질)는 의견이 충분히 모이면 공개됩니다.

Log in to rate problems.

개별 의견

아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.

풀이 제출

Jarvis

게스트로 둘러보고 있습니다. 로그인하면 풀이를 제출하고 진행 상황을 확인할 수 있습니다. 로그인하고 제출하기
공개
C++20 Tab 들여쓰기 · Ctrl+/ 주석 토글 · Enter 자동 들여쓰기
1 1 1 0 공백: 4 · UTF-8