Submission #496841

# Submission time Handle Problem Language Result Execution time Memory
496841 2021-12-22T05:09:16 Z kingline Coin Collecting (JOI19_ho_t4) C++17
0 / 100
19 ms 332 KB
/*#pragma GCC optimize("O3")
#pragma GCC target ("avx2")
#pragma GCC optimize("Ofast")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#pragma GCC optimize("unroll-loops")*/
#include <bits/stdc++.h>
#define file(data) freopen(data".in", "r", stdin); freopen(data".out", "w", stdout);
#define pb push_back
#define all(data) data.begin(), data.end()
#define endl '\n'
#define ll long long
#define int long long
#define pii pair < ll, ll >

using namespace std;

const int N = 4e5 + 5;
const int lg = 21;

int n, x[N], y[N], used[N];

main() {
    //file("pieaters");
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    cin >> n;
    for(int i = 1; i <= n * 2; i++) {
        cin >> x[i] >> y[i];
    }
    vector < pii > v;
    for(int i = 1; i <= n; i++) {
        for(int j = 1; j <= 2; j++) {
            v.pb({i, j});
        }
    }
    srand(time(0));
    int ans = 1e18;
    for(int timer = 1; timer <= 50000; timer++) {
        random_shuffle(all(v));
        int res = 0;
        for(int i = 0; i < v.size(); i++) {
            res += abs(v[i].first - x[i + 1]) + abs(v[i].second - y[i + 1]);
        }
        ans = min(ans, res);
    }
    cout << ans;
}





Compilation message

joi2019_ho_t4.cpp:22:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   22 | main() {
      | ^~~~
joi2019_ho_t4.cpp: In function 'int main()':
joi2019_ho_t4.cpp:42:26: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   42 |         for(int i = 0; i < v.size(); i++) {
      |                        ~~^~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 2 ms 204 KB Output is correct
2 Correct 2 ms 332 KB Output is correct
3 Correct 2 ms 204 KB Output is correct
4 Incorrect 19 ms 332 KB Output isn't correct
5 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 204 KB Output is correct
2 Correct 2 ms 332 KB Output is correct
3 Correct 2 ms 204 KB Output is correct
4 Incorrect 19 ms 332 KB Output isn't correct
5 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 204 KB Output is correct
2 Correct 2 ms 332 KB Output is correct
3 Correct 2 ms 204 KB Output is correct
4 Incorrect 19 ms 332 KB Output isn't correct
5 Halted 0 ms 0 KB -