Submission #609426

# Submission time Handle Problem Language Result Execution time Memory
609426 2022-07-27T15:29:07 Z HediChehaidar Wiring (IOI17_wiring) C++17
13 / 100
39 ms 6052 KB
//#include "wiring.h"
#include<bits/stdc++.h>
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef double db;
ll gcd(ll a , ll b) {return b ? gcd(b , a % b) : a ;} // greatest common divisor (PGCD)
ll lcm(ll a , ll b) {return (a * b) / gcd(a , b);} // least common multiple (PPCM)
#define ss second
#define ff first
#define all(x) (x).begin() , (x).end()
#define pb push_back
#define vi vector<int>
#define vii vector<pair<int,int>>
#define vl vector<ll>
#define vll vector<pair<ll,ll>>
#define pii pair<int,int>
#define pll pair<ll,ll>
#define pdd  pair<double,double>
#define vdd  vector<pdd>
#define dte  tuple<double , double , double>
using namespace std;
const int INF = 1000*1000*1000; // 1 e 9
const int MOD = 1e9 + 7;//998244353 ;
const double EPS = 0.000000001; // 1 e -9
const ll inf = (ll)1e18;

vl r , b;
int n , m;
ll min_total_length(vi R, vi B){
    n = R.size(); m = B.size();
    r.clear(); b.clear();
    for(int i = 0 ; i < n ; i++) r.pb(R[i]);
    for(int i = 0 ; i < m ; i++) b.pb(B[i]);
    sort(all(r)); sort(all(b));
    assert(r.back() < b[0]);
    //assert(n == m);
    int i = n - 1 , j = 0;
    ll ans = 0;
    if(n > m){
        for(int k = 0 ; k < n - m  ; k++){
            ans += b[j] - r[i]; i--;
        }
    }
    if(m > n){
        for(int k = 0 ; k < m - n  ; k++){
            ans += b[j] - r[i]; j++;
        }
    }
    for(int k = 0 ; k < min(n , m) ; k++){
        ans += b[j] - r[i]; i--; j++;
    }
    assert(i == -1 && j == m );
    return ans;
}

/*int main(){
    //ifstream fin ("testing.txt");
    //ofstream fout ("output.txt");
    ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);

    return 0;
}
*/
/*
    Think of : BS / DFS / BFS / SSSP / SCC / MSP / MAX FLOW / TOPSORT / LCA / MATRIX / DP(bitmask) / 2 POINTERS / SEG TREE / MATH / UN FIND / MO / HLD
    Read the statement CAREFULLY !!
    Make a GREADY APPROACH !!!! (start from highest / lowest)
    Make your own TESTS !!
    Be careful from CORNER CASES !
*/
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 0 ms 212 KB Output is correct
3 Correct 20 ms 3060 KB Output is correct
4 Correct 19 ms 3064 KB Output is correct
5 Correct 18 ms 3024 KB Output is correct
6 Correct 28 ms 6048 KB Output is correct
7 Correct 27 ms 6048 KB Output is correct
8 Correct 39 ms 6052 KB Output is correct
9 Correct 29 ms 6036 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB Output is correct
2 Runtime error 1 ms 340 KB Execution killed with signal 6
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 340 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -