


Codeforces Round #FF (Div. 2) D. DZY Loves Modification Greedy Priority Queue_html/css_WEB-ITnose
Link: http://codeforces.com/problemset/problem/447/D
Question: An n*m matrix can be operated k times, and each operation room is The numbers in a certain row or column are reduced by p, and the score obtained is the sum of the original numbers in this row or column. Find the highest score obtained after N operations.
Idea: First count the sum of numbers in each row and column.
Among the k operations performed, i operations are performed on rows, and the remaining k-i operations are performed on columns. First, ignore the impact of rows on columns in each operation, and then when calculating columns, it can finally be calculated that the total impact is i*(k-i)*p. Find the highest value selected for each i operation to calculate the highest score, recorded as cn[i], rn[i] (use the priority queue to take the first). For different i, take ans=max(cn[i] rn[k-i]-i*(k-i)*p).
Note that the data will exceed int, and the initial value of ans must be extremely small.
Code:
#include<iostream>#include<cstdio>#include<cstring>#include<cmath>#include<map>#include<queue>#include<stack>#include<vector>#include<ctype.h>#include<cstdlib>#include<algorithm>#include<string>#define PI acos(-1.0)#define maxntypedef long long ll;using namespace std;long long INF =(1LL << 60);priority_queue < long long > c,r;int main(){ int n,m,k,p,x; long long y; scanf("%d%d%d%d",&n,&m,&k,&p); int col[1005],row[1005]; long long cn[1000005],rn[1000005]; for(int i=0; i<n; i++) for(int j=0; j<m; j++) { scanf("%d",&x); col[j]+=x; row[i]+=x; } for(int i=0; i<n; i++) r.push(row[i]); for(int i=0; i<m; i++) c.push(col[i]); cn[0]=rn[0]=0; for(int i=1; i<=k; i++) { y=c.top(); cn[i]=cn[i-1]+y; c.pop(); c.push(y-n*1LL*p); y=r.top(); rn[i]=rn[i-1]+y; r.pop(); r.push(y-m*1LL*p); } long long ans=-INF; for(int i=0; i<=k; i++) ans=max(ans,cn[i]+rn[k-i]-i*1LL*(k-i)*p); printf("%I64d\n",ans); return 0;}

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit
