# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
66549 | 2018-08-11T11:31:56 Z | KLPP | Sirni (COCI17_sirni) | C++14 | 5000 ms | 40956 KB |
#include<algorithm> #include<stdio.h> using namespace std; #define MAXP 10000000 int pnt[MAXP+5]; int parent[1000000]; int size[1000000]; int root(int x){ if(parent[x]==x)return x; parent[x]=root(parent[x]); return parent[x]; } bool component(int a, int b){ a=root(a); b=root(b); if(root(a)==root(b))return true; return false; } void merge(int a, int b){ a=root(a); b=root(b); if(a==b)return; if(size[a]<size[b]){ size[b]+=size[a]; parent[a]=b; return; } size[a]+=size[b]; parent[b]=a; } int main(){ int n; scanf("%d",&n); int arr[n]; for(int i=0;i<n;i++)scanf("%d",&arr[i]); sort(arr,arr+n); int pn=1; for(int i=1;i<n;i++){ if(arr[i]!=arr[pn-1]){ arr[pn]=arr[i]; pn++; } } n=pn; for(int i=0;i<MAXP+5;i++)pnt[i]=-1; for(int i=0;i<n;i++){ pnt[arr[i]-1]=i; } long long int ans=0; int CC=n; for(int i=0;i<n;i++){ parent[i]=i; size[i]=1; } int round=0; while(CC>1){ //Plog(n) for(int i=0;i<n;i++){ if(arr[i]>round){ for(int j=arr[i]+round-1;j<MAXP;j+=arr[i]){ if(pnt[j]!=-1 && !component(i,pnt[j])){ merge(i,pnt[j]); CC--; ans+=round; } } } } round++; }printf("%lld",ans); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 772 ms | 39416 KB | Output is correct |
2 | Correct | 1420 ms | 39652 KB | Output is correct |
3 | Correct | 605 ms | 39652 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 857 ms | 39652 KB | Output is correct |
2 | Correct | 1118 ms | 39652 KB | Output is correct |
3 | Correct | 128 ms | 39652 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 745 ms | 39680 KB | Output is correct |
2 | Correct | 219 ms | 39924 KB | Output is correct |
3 | Correct | 575 ms | 39924 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1952 ms | 40848 KB | Output is correct |
2 | Correct | 3657 ms | 40848 KB | Output is correct |
3 | Correct | 536 ms | 40908 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 699 ms | 40908 KB | Output is correct |
2 | Correct | 3853 ms | 40908 KB | Output is correct |
3 | Correct | 2269 ms | 40908 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3008 ms | 40908 KB | Output is correct |
2 | Correct | 1774 ms | 40908 KB | Output is correct |
3 | Correct | 500 ms | 40940 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1680 ms | 40940 KB | Output is correct |
2 | Correct | 2687 ms | 40940 KB | Output is correct |
3 | Correct | 473 ms | 40940 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1548 ms | 40956 KB | Output is correct |
2 | Correct | 1204 ms | 40956 KB | Output is correct |
3 | Correct | 1619 ms | 40956 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 447 ms | 40956 KB | Output is correct |
2 | Correct | 2893 ms | 40956 KB | Output is correct |
3 | Correct | 151 ms | 40956 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1495 ms | 40956 KB | Output is correct |
2 | Execution timed out | 5022 ms | 40956 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |