Submission #1662571


Source Code Expand

#include <bits/stdc++.h>
// iostream is too mainstream
#include <cstdio>
// bitch please
#include <iostream>
#include <algorithm>
#include <cstdlib>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <list>
#include <cmath>
#include <iomanip>
#include <time.h>
#define dibs reserve
#define OVER9000 1234567890123456789LL
#define ALL_THE(CAKE,LIE) for(auto LIE =CAKE.begin(); LIE != CAKE.end(); LIE++)
#define tisic 47
#define soclose 1e-8
#define chocolate win
// so much chocolate
#define patkan 9
#define ff first
#define ss second
#define abs(x) ((x < 0)?-(x):x)
#define uint unsigned int
#define dbl long double
#define pi 3.14159265358979323846
using namespace std;
// mylittledoge

typedef long long cat;

#ifdef DONLINE_JUDGE
	// palindromic tree is better than splay tree!
	#define lld I64d
#endif

int main() {
	cin.sync_with_stdio(0);
	cin.tie(0);
	cout << fixed << setprecision(10);
	int W,H;
	cin >> W >> H;
	vector<cat> cW(W), cH(H);
	for(int i =0; i < W; i++) cin >> cW[i];
	for(int i =0; i < H; i++) cin >> cH[i];
	sort(begin(cW),end(cW));
	sort(begin(cH),end(cH));
	int a =0, b =0, w =W, h =H;
	cat ans =0;
	for(int i =0; i < W+H; i++) {
		if(a == W || (b < H && cW[a] > cH[b])) {
			ans +=(w+1)*cH[b];
			h--;
			b++;
		}
		else {
			ans +=(h+1)*cW[a];
			w--;
			a++;
		}
	}
	cout << ans << "\n";
	return 0;}

// look at my code
// my code is amazing

Submission Info

Submission Time
Task C - Gr-idian MST
User xellos
Language C++14 (GCC 5.4.1)
Score 500
Code Size 1479 Byte
Status AC
Exec Time 34 ms
Memory 1792 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 34 ms 1792 KB
02.txt AC 33 ms 1792 KB
03.txt AC 33 ms 1792 KB
04.txt AC 33 ms 1792 KB
05.txt AC 33 ms 1792 KB
06.txt AC 33 ms 1792 KB
07.txt AC 33 ms 1792 KB
08.txt AC 34 ms 1792 KB
09.txt AC 33 ms 1792 KB
10.txt AC 33 ms 1792 KB
11.txt AC 28 ms 1792 KB
12.txt AC 28 ms 1792 KB
13.txt AC 23 ms 1792 KB
14.txt AC 32 ms 1792 KB
15.txt AC 32 ms 1792 KB
16.txt AC 17 ms 1024 KB
17.txt AC 17 ms 1024 KB
18.txt AC 17 ms 1024 KB
19.txt AC 17 ms 1024 KB
20.txt AC 15 ms 1792 KB
21.txt AC 24 ms 1792 KB
22.txt AC 24 ms 1792 KB
23.txt AC 20 ms 1792 KB
24.txt AC 24 ms 1792 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