Submission #1274351


Source Code Expand

#include <bits/stdc++.h>
using namespace std;

vector<pair<int, int>> arr;

int main( void ) {
    
    int w, h;
    cin >> w >> h;
    
    for( int i = 1; i <= w; i ++ ) {
        int x;
        cin >> x;
        
        arr.push_back( make_pair( x, 0 ) );
    }
    
    for( int i = 1; i <= h; i ++ ) {
        int x;
        cin >> x;
        
        arr.push_back( make_pair( x, 1 ) );
    }
    
    w ++; h ++;
    sort( arr.begin(), arr.end() );
    
    long long ans = 0;
    for( pair<int, int> pr : arr ) {
        if( pr.second == 0 ) {
            ans += 1LL * pr.first * h;
            w --;
        }
        else {
            ans += 1LL * pr.first * w;
            h --;
        }
    }
    
    cout << ans << endl;
    return 0;
}

Submission Info

Submission Time
Task C - Gr-idian MST
User EmanuelNrx
Language C++14 (GCC 5.4.1)
Score 500
Code Size 795 Byte
Status AC
Exec Time 115 ms
Memory 2420 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 500 / 500
Status
AC × 2
AC × 30
Set Name Test Cases
Sample s1.txt, s2.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, s1.txt, s2.txt
Case Name Status Exec Time Memory
01.txt AC 113 ms 2420 KB
02.txt AC 115 ms 2420 KB
03.txt AC 113 ms 2420 KB
04.txt AC 115 ms 2420 KB
05.txt AC 113 ms 2420 KB
06.txt AC 113 ms 2420 KB
07.txt AC 115 ms 2420 KB
08.txt AC 114 ms 2420 KB
09.txt AC 115 ms 2420 KB
10.txt AC 115 ms 2420 KB
11.txt AC 111 ms 2420 KB
12.txt AC 113 ms 2420 KB
13.txt AC 115 ms 2420 KB
14.txt AC 114 ms 2420 KB
15.txt AC 112 ms 2420 KB
16.txt AC 58 ms 1400 KB
17.txt AC 57 ms 1400 KB
18.txt AC 58 ms 1400 KB
19.txt AC 56 ms 1400 KB
20.txt AC 42 ms 2420 KB
21.txt AC 77 ms 2420 KB
22.txt AC 78 ms 2420 KB
23.txt AC 89 ms 2420 KB
24.txt AC 113 ms 2420 KB
25.txt AC 1 ms 256 KB
26.txt AC 1 ms 256 KB
27.txt AC 1 ms 256 KB
28.txt AC 1 ms 256 KB
s1.txt AC 1 ms 256 KB
s2.txt AC 1 ms 256 KB