# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
126459 | 2019-07-07T19:29:11 Z | letrongdat | Sirni (COCI17_sirni) | C++17 | 5000 ms | 570220 KB |
#include <bits/stdc++.h> using namespace std; #define forn(i, a, b) for(int i=a; i<=b; ++i) #define ford(i, a ,b) for(int i=a; i>=b; --i) #define repn(i, a, b) for(int i=a; i <b; ++i) typedef pair<int, int> ii; const int maxM = 1e7+ 10; const int maxN = 1e5 +10; int N; int Near[maxM]; int lab[maxN]; vector<int> P; vector<ii> Edge[maxM]; int root(int u) { if (lab[u] < 0) return u; return lab[u] = root(lab[u]); } bool join(int u, int v) { int l1 = root(u), l2 = root(v); if (l1 == l2) return false; if (lab[l1] > lab[l2]) swap(l1, l2); lab[l1] += lab[l2]; lab[l2] = l1; return true; } int main() { ios::sync_with_stdio(0); memset(lab, -1, sizeof lab); cin >> N; P.resize(N); repn(i, 0, N) cin >> P[i]; sort(P.begin(), P.end()); P.resize(unique(P.begin(), P.end()) - P.begin()); memset(Near, 0x3f, sizeof Near); repn(i, 0, P.size()) Near[P[i]] = i; ford(i, P.back(), 0) Near[i] = min(Near[i], Near[i+1]); repn(i, 0, P.size() -1) { int weight = P[Near[P[i]+1]] - P[i]; Edge[weight].push_back({i, Near[P[i]+1]}); for(int j = 2*P[i]; j <= P.back(); j += P[i]) { int weight = P[Near[j]] - j; if (weight >= P[i]) continue; Edge[weight].push_back({i, Near[j]}); } } long long result = 0; repn(i, 0, maxM) { for(auto &e: Edge[i]) result += join(e.first, e.second) * i; } cout << result; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 324 ms | 274936 KB | Output is correct |
2 | Correct | 361 ms | 277240 KB | Output is correct |
3 | Correct | 309 ms | 274932 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 279 ms | 274744 KB | Output is correct |
2 | Correct | 611 ms | 275732 KB | Output is correct |
3 | Correct | 310 ms | 274936 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 309 ms | 274892 KB | Output is correct |
2 | Correct | 307 ms | 274808 KB | Output is correct |
3 | Correct | 309 ms | 274936 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 362 ms | 284808 KB | Output is correct |
2 | Correct | 569 ms | 312140 KB | Output is correct |
3 | Correct | 380 ms | 290604 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 288 ms | 276380 KB | Output is correct |
2 | Correct | 473 ms | 297492 KB | Output is correct |
3 | Correct | 368 ms | 285216 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 458 ms | 296776 KB | Output is correct |
2 | Correct | 624 ms | 326256 KB | Output is correct |
3 | Correct | 374 ms | 288732 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 348 ms | 278144 KB | Output is correct |
2 | Correct | 638 ms | 321504 KB | Output is correct |
3 | Correct | 403 ms | 288832 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 510 ms | 287000 KB | Output is correct |
2 | Correct | 3459 ms | 483976 KB | Output is correct |
3 | Correct | 609 ms | 290296 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 534 ms | 286932 KB | Output is correct |
2 | Execution timed out | 5047 ms | 570220 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 366 ms | 277044 KB | Output is correct |
2 | Execution timed out | 5109 ms | 563836 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |