Submission #101944

# Submission time Handle Problem Language Result Execution time Memory
101944 2019-03-21T07:08:00 Z tim25871014 Wiring (IOI17_wiring) C++17
0 / 100
3 ms 384 KB
#include "wiring.h"
#include <bits/stdc++.h>
using namespace std;

long long min_total_length(vector<int> r, vector<int> b){
    int n=r.size(),m=b.size();

    long long ans=0;
    if(n>m){
        long long minn=2147483647;
        for(int i=0;i<n;i++)
            for(int j=0;j<m;j++){
                minn=min((long long)abs(b[j]-r[i]),minn);
            }
        ans=ans+minn;
    }
    else{
        long long minn=2147483647;
        for(int i=0;i<m;i++)
            for(int j=0;j<n;j++){
                minn=min((long long)abs(b[i]-r[j]),minn);
            }
        ans=ans+minn;
    }
    return ans;
}
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 256 KB 3rd lines differ - on the 1st token, expected: '25859', found: '1868'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 256 KB 3rd lines differ - on the 1st token, expected: '904', found: '3'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 384 KB 3rd lines differ - on the 1st token, expected: '316', found: '8'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 384 KB 3rd lines differ - on the 1st token, expected: '27', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 256 KB 3rd lines differ - on the 1st token, expected: '25859', found: '1868'
2 Halted 0 ms 0 KB -