# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
447797 |
2021-07-27T14:44:06 Z |
dawangk |
Sirni (COCI17_sirni) |
C++14 |
|
5000 ms |
786436 KB |
#include <bits/stdc++.h>
using namespace std;
//#pragma GCC optimize("Ofast,unroll-loops")
//#pragma GCC target("avx,avx2,fma")
#define inputJunk ios_base::sync_with_stdio(0); cin.tie(0);
#define pb push_back
#define f first
#define s second
#define all(x) x.begin(), x.end()
#define debug cout<<"HERE"<<endl;
#define ell "\n"
typedef unsigned long long ll;
typedef unsigned long long ull;
typedef pair<int, int> pi;
typedef pair<ll, ll> pll;
typedef pair<int, pi> trip;
typedef pair<pll, ll> tripll;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef vector<pi> vpi;
typedef vector<pll> vpll;
typedef vector<trip> vtrip;
typedef vector<tripll> vtripll;
const ll INF = 1e17+1212;
const ll P = 9973, M = 1e9+9;
const int MM = 1e5+5; int mod = 1e9+7;//99824435
int n, arr[MM], closest[MM*100];
struct DSU {
vi e; void init(int N) { e = vi(N,-1); }
int get(int x) { return e[x] < 0 ? x : e[x] = get(e[x]); }
bool sameSet(int a, int b) { return get(a) == get(b); }
int size(int x) { return -e[get(x)]; }
bool unite(int x, int y) { // union by size
x = get(x), y = get(y); if (x == y) return 0;
if (e[x] > e[y]) swap(x,y);
e[x] += e[y]; e[y] = x; return 1;
}
};
template<class T> T kruskal(int N, vector<pair<T,pi>> ed) {
sort(all(ed));//reverse(all(ed));
T ans = 0; DSU D; D.init(N+1); // edges that unite are in MST
for(auto &a:ed){
if (D.unite(a.s.f,a.s.s)) {
ans += a.f;
}
}
return ans;
}
int calc(int a, int b){
if(b>a)swap(a, b);
return a%b;
}
int main(){
cin>>n;
for(int i= 0;i<n;i++){
cin>>arr[i];
closest[arr[i]] = arr[i];
}
vtrip edges;
for(int i = 10000006;i>=1;i--){
if(closest[i]==0)closest[i] = closest[i+1];
}
sort(arr, arr+n);
// for(int i = 1;i<=12;i++){
// cout<<closest[i]<<endl;
//}
for(int i = 0;i<n;i++){
for(int k = arr[i]; k<=10000006; k+=arr[i]){
if(closest[k]==0)break;
//cout<<k<<" "<<closest[k]<<" "<<closest[k+1]<<endl;
if(k==arr[i]){if(closest[k+1]==0)break;edges.pb({closest[k+1]-k, {arr[i], closest[k+1]}});}
else{
edges.pb({closest[k]-k, {arr[i], closest[k]}});
}
}
}
int ans = kruskal(10000500, edges);
cout<<ans<<ell;
}
/*CUSTOM TEST CASE 1
*/
/*CUSTOM TEST CASE 2
*/
/*CUSTOM TEST CASE 3
*/
/*Comments of Shame
- floating error (use integer division instead)
- cin vs getline
- upperbound and lowerbound returns iteratorsf
- use long long when number is big enough
- for dp invalid cases needs to be skipped
- some base cases won't work (review cow poetry)
- always check bounds, some TLE are due to incorrect bounds!
- dont mess up return types
= RESET ARRAYS!!!!!!!!!!
- USE UR BRAIN
- INF setting problems
- push vs pb
- check if things are used properly
- read the PROBLEM (directed vs undirected graph)
*/
/*
freopen("time.in","r", stdin);
freopen("time.out","w", stdout);
*/
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
66 ms |
78676 KB |
Output is correct |
2 |
Correct |
679 ms |
159868 KB |
Output is correct |
3 |
Correct |
70 ms |
79172 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
67 ms |
78732 KB |
Output is correct |
2 |
Runtime error |
956 ms |
786436 KB |
Execution killed with signal 9 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
74 ms |
78636 KB |
Output is correct |
2 |
Correct |
79 ms |
78544 KB |
Output is correct |
3 |
Correct |
73 ms |
78732 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
320 ms |
104756 KB |
Output is correct |
2 |
Correct |
1278 ms |
216672 KB |
Output is correct |
3 |
Correct |
677 ms |
146224 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
112 ms |
83000 KB |
Output is correct |
2 |
Execution timed out |
5093 ms |
725592 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
649 ms |
142516 KB |
Output is correct |
2 |
Correct |
2135 ms |
311084 KB |
Output is correct |
3 |
Correct |
493 ms |
126848 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
156 ms |
88184 KB |
Output is correct |
2 |
Correct |
2101 ms |
308080 KB |
Output is correct |
3 |
Correct |
672 ms |
145212 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
417 ms |
110580 KB |
Output is correct |
2 |
Runtime error |
1120 ms |
786436 KB |
Execution killed with signal 9 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
509 ms |
122656 KB |
Output is correct |
2 |
Runtime error |
1092 ms |
786436 KB |
Execution killed with signal 9 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
118 ms |
83144 KB |
Output is correct |
2 |
Runtime error |
1309 ms |
786436 KB |
Execution killed with signal 9 |
3 |
Halted |
0 ms |
0 KB |
- |