Submission #1162919


Source Code Expand

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <string>
#include <vector>
#include <queue>
#include <map>
#include <set>
#include <functional>
#include <cmath>
#include <complex>
#include <cctype>
#include <cassert>
#include <sstream>
#include <ctime>
 
using namespace std;
 
#define FOR(i,a,b) for(int i=(a);i<(b);i++)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
 
template<typename A, typename B> inline bool chmax(A &a, B b) { if (a<b) { a=b; return 1; } return 0; }
template<typename A, typename B> inline bool chmin(A &a, B b) { if (a>b) { a=b; return 1; } return 0; }
 
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef pair<int, pii> P;
typedef vector<pii> vp;

#define INF (1<<29)
#define INFL (1ll<<60)
#define EPS (1e-8)
#define PI (acos(-1))
const ll MOD = 1000000007ll;

int w, h;
int p[112345], q[112345];

int main() {
	cin >> w >> h;
	REP(i, w) scanf("%d", p + i);
	REP(i, h) scanf("%d", q + i);
	
	priority_queue<pii, vector<pii>, greater<pii> > pq;
	REP(i, w) pq.push(pii(p[i], 0));
	REP(i, h) pq.push(pii(q[i], 1));
	
	
	int cnt[2] = {};
	ll ans = 0;
	
	while (!pq.empty()) {
		pii now = pq.top(); pq.pop();
		
		int cost = now.first;
		int pat = now.second;
		
		if (pat == 0) {
			ans += (ll)cost * (h + 1 - cnt[1]);
			cnt[0]++;
		}
		else {
			ans += (ll)cost * (w + 1 - cnt[0]);
			cnt[1]++;
		}
	}
	cout << ans << endl;
	
	return 0;
}

Submission Info

Submission Time
Task C - Gr-idian MST
User tkmst201
Language C++14 (GCC 5.4.1)
Score 500
Code Size 1506 Byte
Status AC
Exec Time 52 ms
Memory 3188 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:43:30: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  REP(i, w) scanf("%d", p + i);
                              ^
./Main.cpp:44:30: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  REP(i, h) scanf("%d", q + i);
                              ^

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 52 ms 3188 KB
02.txt AC 52 ms 3188 KB
03.txt AC 52 ms 3188 KB
04.txt AC 52 ms 3188 KB
05.txt AC 52 ms 3188 KB
06.txt AC 52 ms 3188 KB
07.txt AC 52 ms 3188 KB
08.txt AC 52 ms 3188 KB
09.txt AC 52 ms 3188 KB
10.txt AC 52 ms 3188 KB
11.txt AC 47 ms 3188 KB
12.txt AC 48 ms 3188 KB
13.txt AC 43 ms 3188 KB
14.txt AC 50 ms 3188 KB
15.txt AC 51 ms 3188 KB
16.txt AC 25 ms 1784 KB
17.txt AC 25 ms 1784 KB
18.txt AC 25 ms 1912 KB
19.txt AC 25 ms 1784 KB
20.txt AC 30 ms 3188 KB
21.txt AC 41 ms 3188 KB
22.txt AC 42 ms 3188 KB
23.txt AC 39 ms 3188 KB
24.txt AC 38 ms 3188 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