이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define fi first
#define se second
#define mp make_pair
typedef pair<int, int> ii;
typedef long long ll;
const int len = 1e5+2;
int cnt[100*len], nex[100*len][2], p[len], r[len];
list<ii> vec[100*len];
int fin(int i){
if (p[i] == i) return i;
return p[i] = fin(p[i]);
}
void join(int i, int j){
if (r[i] > r[j])
p[j] = i;
else{
p[i] = j;
if (r[i] == r[j]) r[j]++;
}
}
void read(int &res){
char c;
while (c = getchar(), c < '0' || c > '9'){}
res = c-'0';
while (c = getchar(), c >= '0' && c <= '9')
res = 10*res+c-'0';
}
int main(){
int n, m = 0, k = 0;
read(n);
for (int i = 0; i < n; i++){
int temp;
read(temp);
m = max(m, temp);
if (!cnt[temp]) cnt[temp] = ++k;
}
for (int i = m; i >= 1; i--){
nex[i][0] = nex[i+1][0];
if (cnt[i]) nex[i][0] = i;
nex[i][1] = nex[i+1][1];
if (cnt[i+1]) nex[i][1] = i+1;
}
for (int i = 1; i <= k; i++){
r[i] = 0;
p[i] = i;
}
for (int i = 1; i <= m; i++)
if (cnt[i])
for (int j = i; j <= m; j+=i){
if (j == i && nex[j][1] && nex[j][1] < j+i)
vec[nex[j][1]-j].pb(mp(cnt[i], cnt[nex[j][1]]));
else if (j != i && nex[j][0] && nex[j][0] < j+i);
vec[nex[j][0]-j].pb(mp(cnt[i], cnt[nex[j][0]]));
}
ll ans = 0;
for (int i = 0; i <= m; i++){
if (k == 1) break;
for (auto it : vec[i]){
if (k == 1) break;
int x = fin(it.fi), y = fin(it.se);
if (x != y)
join(x, y), ans += i, k--;
}
}
printf("%lld\n", ans);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
sirni.cpp: In function 'int main()':
sirni.cpp:66:22: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
else if (j != i && nex[j][0] && nex[j][0] < j+i);
^~
sirni.cpp:67:21: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
vec[nex[j][0]-j].pb(mp(cnt[i], cnt[nex[j][0]]));
^~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |