93862024-02-21 11:37:15ananászDinamitcpp17Hibás válasz 23/503ms3496 KiB
// dinamit.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>

using namespace std;

int main()
{
	int N, M, K;
	cin >> N >> M >> K;
	vector<vector<int>>sum(N, vector<int>(M, 0));
	vector<vector<int>>faradtsag(N, vector<int>(M, 0));
	for (int i = 0; i < N; i++)
	{
		for (int j = 0; j < M; j++)
		{
			cin >> faradtsag[i][j];
		}
	}
	sum[0][0] = faradtsag[0][0];
	for (int i = 1; i < M; i++)
	{
		sum[0][i] = sum[0][i - 1] + faradtsag[0][i];
	}
	for (int i = 1; i < N; i++)
	{
		for (int j = 0; j < M; j++)
		{
			if (j == 0)
			{
				sum[i][j] = sum[i - 1][0] + faradtsag[i][j];
			}
			else
			{
				sum[i][j] = min(sum[i - 1][j], sum[i][j - 1]) + faradtsag[i][j];
			}

		}
	}
	//int ertek= sum[N-1][M-1];
	priority_queue<int>robbantas;
	pair<int, int>akt;
	robbantas.push(faradtsag[N - 1][M - 1]);
	akt.first = N - 1;
	akt.second = M - 1;
	while (akt.first>0&&akt.second>0)
	{
		if (sum[akt.first-1][akt.second]<sum[akt.first][akt.second-1])
		{
			akt.first--;
		}
		else
		{
			akt.second--;
		}
		robbantas.push(faradtsag[akt.first][akt.second]);
	}
	while (akt.first>0)
	{
		akt.first--;
		robbantas.push(faradtsag[akt.first][akt.second]);
	}
	while (akt.second>0)
	{
		akt.second--;
		robbantas.push(faradtsag[akt.first][akt.second]);
	}
	int x;
	int y;
	for (int i = 0; i < K; i++)
	{
		x=robbantas.top();
		robbantas.pop();
		if (x%2==0)
		{
			x = x / 2;
			y = x;
		}
		else
		{
			x = x / 2;
			y=x+1;
		}
		//ertek -= y;
		robbantas.push(x);
	}
	int ertek = 0;
	while (robbantas.size()>0)
	{
		ertek+=robbantas.top();
		robbantas.pop();
	}
	cout << ertek << endl;
	return 0;
}

// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu

// Tips for Getting Started: 
//   1. Use the Solution Explorer window to add/manage files
//   2. Use the Team Explorer window to connect to source control
//   3. Use the Output window to see build output and other messages
//   4. Use the Error List window to view errors
//   5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
//   6. In the future, to open this project again, go to File > Open > Project and select the .sln file
RészfeladatÖsszpontTesztVerdiktIdőMemória
base23/50
1Elfogadva0/03ms1812 KiB
2Hibás válasz0/03ms2020 KiB
3Elfogadva2/23ms2104 KiB
4Elfogadva2/23ms2228 KiB
5Elfogadva3/33ms2340 KiB
6Elfogadva3/33ms2420 KiB
7Elfogadva2/23ms2544 KiB
8Elfogadva3/33ms2624 KiB
9Hibás válasz0/23ms2616 KiB
10Elfogadva2/23ms2744 KiB
11Elfogadva3/33ms2824 KiB
12Hibás válasz0/33ms2948 KiB
13Hibás válasz0/23ms3040 KiB
14Elfogadva3/33ms3040 KiB
15Hibás válasz0/23ms3200 KiB
16Hibás válasz0/33ms3168 KiB
17Hibás válasz0/23ms3304 KiB
18Hibás válasz0/33ms3264 KiB
19Hibás válasz0/23ms3264 KiB
20Hibás válasz0/33ms3264 KiB
21Hibás válasz0/23ms3392 KiB
22Hibás válasz0/33ms3496 KiB