답안 #914919

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
914919 2024-01-22T22:01:15 Z tvladm2009 Palembang Bridges (APIO15_bridge) C++17
0 / 100
1 ms 600 KB
#include <iostream>
#include <complex>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <numeric>
#include <cstring>
#include <ctime>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <list>
#include <cmath>
#include <bitset>
#include <cassert>
#include <queue>
#include <stack>
#include <deque>
#include <random>
 
using namespace std;
template<typename T1, typename T2> inline void chkmin(T1 &a, T2 b) {if (a > b) a = b;}
template<typename T1, typename T2> inline void chkmax(T1 &a, T2 b) {if (a < b) a = b;}
#define files(FILENAME) read(FILENAME); write(FILENAME)
#define read(FILENAME) freopen((FILENAME + ".in").c_str(), "r", stdin)
#define write(FILENAME) freopen((FILENAME + ".out").c_str(), "w", stdout)
#define all(c) (c).begin(), (c).end()
#define sz(c) (int)(c).size()
#define left left228
#define right right228
#define y1 y1228
#define mp make_pair
#define pb push_back
#define y2 y2228
#define rank rank228
using ll = long long;
using ld = long double; 
const string FILENAME = "input";

int k, n;

struct kek {
	char p;
	int s;
	char q;
	int t;
};

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	//read(FILENAME);
	cin >> k >> n;
	ll add = 0;
	vector<kek> v;
	vector<pair<int, bool>> points;
	for (int i = 1; i <= n; i++) {
		char p, q;
		int s, t;
		cin >> p >> s >> q >> t;
		if (p == q) {
			add += abs(s - t);
		} else {
			points.pb(mp(s, (s > t)));
			points.pb(mp(t, (t > s)));
			v.pb({p, s, q, t});
		}
	}
	if (k == 1) {
		sort(all(points));
		ll sumR = 0, cntR = 0;
		ll sumL = 0, cntL = 0;
		for (auto i: points) {
			sumR += i.first;
			cntR++;
		}	
		int in = 0;
		ll res = 1e18;
		for (auto bridge: points) {
			cntL++;
			cntR--;
			sumL += bridge.first;
			sumR -= bridge.first;
			ll cost = cntL * bridge.first - sumL + sumR - cntR * bridge.first;
			cost += v.size();
			chkmin(res, cost);
		}
		cout << res + add << '\n';
	}
	return 0;
}
/*
1 5
B 0 A 4
B 1 B 3
A 5 B 7
B 2 A 6
B 1 A 7

5
2
5
5
7
*/

Compilation message

bridge.cpp: In function 'int main()':
bridge.cpp:81:7: warning: unused variable 'in' [-Wunused-variable]
   81 |   int in = 0;
      |       ^~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 600 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -