Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Bridge
- SlidingWindow
- FenwickTree
- topologicalsort
- Tree
- DP
- TwoPointers
- LIS
- ShortestPath
- greedy
- Flow
- DFS
- Math
- IndexedTree
- BinarySearch
- Sweeping
- ArticulationPoint
- Bellman-Ford
- MST
- BFS
- Dijkstra
- LCA
- 2-sat
- Union-Find
- backtracking
- mergesorttree
- scc
- Implementation
- KMP
- Floyd
Archives
- Today
- Total
정리충의 정리노트
[백준] 1222: 홍준 프로그래밍 대회 본문
0. 문제 주소
https://www.acmicpc.net/problem/1222
1. 풀이
주어지는 수들의 범위가 작은 경우 그 수들을 인덱스로 이용하는 방법을 까먹지 말자
2. 풀이 코드
* 유의할 점
#include <bits/stdc++.h>
#define ll long long
const int MAX = 2000005;
using namespace std;
int arr[MAX];
int main(){
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
#endif
// ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
int N;
scanf("%d", &N);
for (int i=0;i<N;i++){
int temp;
scanf("%d", &temp);
arr[temp]++;
}
ll ans = 0;
for (int i=1;i<MAX;i++){
ll curr_cnt = 0;
for (int j=1;i*j<=MAX;j++){
curr_cnt += arr[i*j];
}
if (curr_cnt < 2) continue;
ans = max(ans, (ll)i * curr_cnt);
}
printf("%lld\n", ans);
return 0;
}
Comments