codeforce#939 (div2) 题解

C. Nene’s Magical Matrix

给一个nxn的矩阵,现在你可以执行一个操作:将数字1-n任意排列,并将这个序列覆盖到矩阵的任意一行或列。操作次数小于 2 n 2n 2n,求矩阵中元素和的最大值。

这个题显然存在一种巧妙的构造方法使得矩阵中元素 a i , j = m a x ( i , j ) a_{i,j} = max(i,j) ai,j=max(i,j)
从n开始到1,将序列 1 , 2 , 3 , 4 … n 1,2,3,4 \dots n 1,2,3,4n分别填充到对应的行和列上,这样就可以使矩阵元素和最大

#include <iostream>
#include <string.h>
#include <algorithm>
#include <math.h>
#include <time.h>
#include <set>
#include <map>
#include <queue>#define IOS     ios::sync_with_stdio(0);cin.tie(0);
#define mem(A,B) memset(A,B,sizeof(A));
#define rep(index,start,end) for(int index = start;index < end; index ++)
#define drep(index,start,end) for(int index = start;index >= end; index --)using namespace std;const int maxn = 512;int store[maxn][maxn];
int perm[maxn];
void test(int);
bool check(int);
int main() {IOS//    rep(i,1,501) test(i);
//    cout<<"finish"<<endl;int t;cin>>t;while(t--) {int n;cin>>n;rep(i,0,n) rep(j,0,n) store[i][j] = 0;rep(i,1,n+1) perm[i-1] = i;string str = "";rep(i,0,n) {str += ' ';str += to_string(perm[i]);}int ans = 0,sum = 0;drep(i,n,1) {sum += i;ans += sum;}ans = ans*2 - sum;int _time = 2*n;cout<<ans<<' '<<_time<<endl;drep(i,n-1,0) {// type 1cout<<1<<' '<<i+1<<str<<endl;// type 2cout<<2<<' '<<i+1<<str<<endl;}}return 0;
}
void test(int n) {rep(i,1,n+1) perm[i-1] = i;int _time = 0;drep(i,n-1,0) {rep(col,0,n)store[i][col] = perm[col];_time ++;rep(row,0,n)store[row][i] = perm[row];_time ++;}if (_time != 2*n) {cout<<n<<"!"<<endl;}if (!check(n)) {cout<<"false"<<endl;rep(i,0,n) {rep(j,0,n) cout<<store[i][j]<<' ';cout<<endl;}}
}
bool check(int n) {bool ans = true;rep(i,0,n) {rep(j,0,n) {ans = ans && (store[i][j] == max(i+1,j+1));}if (!ans) break;}return ans;
}

D. Nene and the Mex Operator

M E X ( a l , a l + 1 , … , a r ) MEX({a_l,a_{l+1},…,a_r}) MEX(al,al+1,,ar)表示没有出现在这个些数中最小的数。比如 M E X ( 5 , 3 , 4 ) = 2 MEX(5,3,4) = 2 MEX(5,3,4)=2。现在你可以执行不超过 5 ⋅ 1 0 5 5\cdot 10^5 5105次MEX操作,假设每一次对于区间 ( l , r ) (l,r) (l,r)MEX得到的结果是x,令 a i = x , l ≤ i ≤ r a_i = x, l\le i\le r ai=x,lir,问能得到的数组的最大值。

由于MEX得到的是未出现的最小实数,所以是不是看起来MEX只能让结果变小呢。实则不然,比如 M E X ( 0 ) = 1 MEX(0) = 1 MEX(0)=1以及 M E X ( 1 , 0 ) = 2 MEX(1,0) = 2 MEX(1,0)=2。所以不难得出对于长度为n的区间,MEX所能使区间最大值为 n 2 n^2 n2
那么现在我们再来看怎么才能将任意一个长度为n的区间转换为最大值的样式 ( n , n , n … n ) (n,n,n \dots n) (n,n,nn)。为了达到这个效果,那么需要前置状态为 ( 1 , 2 , 3 … n − 1 , 0 ) (1,2,3 \dots n-1, 0) (1,2,3n1,0),这样MEX才能使得结果最大。那么怎么才能到达这个状态呢,不妨借助一个中间状态 ( n − 1 , n − 1 , n − 1 … n − 1 , 0 ) (n-1, n-1, n-1 \dots n-1 ,0) (n1,n1,n1n1,0),在这个基础上再去转移到 ( n − 2 , n − 2 , n − 2 … n − 2 , n − 1 , 0 ) (n-2, n-2, n-2 \dots n-2,n-1,0) (n2,n2,n2n2,n1,0),直到 ( 1 , 2 , 3 … n − 1 , 0 ) (1,2,3 \dots n-1, 0) (1,2,3n1,0)。通过这个流程我们就能构造出最大值。
然后就是关于哪些区间需要我们去构造。因为MEX最大只能得到 n 2 n^2 n2,所以这里可以用dp去计算我们能得到的最大值。官方题解用的是状压dp,但是我没想到,就额外开了一个数组记录前置状态。转移方程
d p [ i ] = m a x ( d p [ i − 1 ] + s t o r e [ i ] , ∑ j = 0 i − 1 d p [ j ] + ( i − j ) 2 ) dp[i] = max(dp[i-1] + store[i], \sum_{j=0}^{i-1} dp[j] + (i-j)^2) dp[i]=max(dp[i1]+store[i],j=0i1dp[j]+(ij)2)

#include <iostream>
#include <string.h>
#include <algorithm>
#include <math.h>
#include <time.h>
#include <set>
#include <map>
#include <queue>#define IOS     ios::sync_with_stdio(0);cin.tie(0);
#define re      return 0;
#define mem(A,B) memset(A,B,sizeof(A));
#define rep(index,start,end) for(int index = start;index < end; index ++)
#define drep(index,start,end) for(int index = start;index >= end; index --)using namespace std;typedef pair<int, int> pii;const int maxn = 32;
int pow_table[20] = {0,2};int store[maxn];
int dp[maxn];
int pre_ind[maxn];
int cnt[maxn];
vector<pii> ops;
void dfs(int,int);
inline int mex(int ,int);
void show(int);
int main() {IOSint n;cin>>n;rep(i,1,n+1) cin>>store[i];dp[0] = 0;rep(i,1,n+1) {if (dp[i] < dp[i-1]+store[i]) {dp[i] = dp[i-1]+store[i];pre_ind[i] = 0;}rep(j,0,i) {if (dp[i] < dp[j] + (i-j)*(i-j)) {dp[i] = dp[j] + (i-j)*(i-j);pre_ind[i] = i - j;}}}int pos = n;pos = n;while(pos) {int interv = pre_ind[pos];if (interv) {int s = pos - pre_ind[pos] + 1;dfs(s, interv);pos -= pre_ind[pos];} elsepos --;}
//    show(n);cout<<dp[n]<<' '<<ops.size()<<endl;for(auto it = ops.begin();it!=ops.end();it++)cout<<it->first<<' '<<it->second<<endl;return 0;
}
// return len len len ... len
void dfs(int pos,int len) {if (len == 1) {if (store[pos]) // to 0ops.push_back(make_pair(pos, pos));// now 0ops.push_back(make_pair(pos, pos));// after to 1store[pos] = 1;return;}drep(i, len-1, 1) {// i i i .... i Xdfs(pos, i);}// 1 2 3 ... n-1 Xif (store[pos+len-1])ops.push_back(make_pair(pos+len-1, pos+len-1));store[pos+len-1] = 0;// 1 2 3 ... n-1 0ops.push_back(make_pair(pos, pos+len-1));int num = mex(pos, len);rep(i,pos, pos+len) store[i] = num;
}
inline int mex(int pos,int len) {rep(i,0,maxn) cnt[i] = 0;rep(i,pos, pos+len) {int num = store[i];if (num<maxn) cnt[num] ++;}int ind = 0;while(cnt[ind]) ind ++;return ind;
}
void show(int len) {rep(i,1,len+1)cout<<store[i]<<' ';cout<<endl;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/11195.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

软件设计各个阶段的成果

软件设计各个阶段的成果 1.可行性分析与项目开发计划2.需求分析3.系统设计4.系统测试运行和维护知识 自行整理的软件设计阶段性成果&#xff0c;如有不对的地方&#xff0c;欢迎指正。 1.可行性分析与项目开发计划 可行性分析报告项目开发计划 2.需求分析 软件需求说明书用…

MySql软件安装

1.打开mysql官网网址 MySQL :: Download MySQL Community Server 2.本次针对版本8的图形化界面安装&#xff0c;下载成功后接下来对MySQL进行安装 3.图形化下载后有一个MSI文件 4.我们安装典型即可&#xff0c;选择第一个 5.选择数据库信息存放的路径&#xff0c;我默认放在C盘…

springboot集成SpringIntegration

SpringIntegration的核心 Spring Integration的核心是消息驱动的架构。它提供了一种途径来将应用程序的各个组件&#xff08;例如&#xff1a;系统、服务、应用程序&#xff09;通过消息进行连接&#xff0c;从而实现系统的解耦和灵活性。Spring Integration基于企业集成模式&a…

Python 中字符串列表的排序

&#x1f349; CSDN 叶庭云&#xff1a;https://yetingyun.blog.csdn.net/ 在 Python 中&#xff0c;列表中字符串元素的排序可以通过多种方式实现&#xff0c;主要依赖于 sort() 方法和 sorted() 函数。这两种方式都可以有效地对字符串列表进行排序&#xff0c;但它们在使用方…

十个简单的Python类的例子

十个简单的Python类的例子 涵盖了基本的类概念、实例属性、方法及一些高级应用。 内容从浅入深。 例子 1&#xff1a;定义一个简单的类 class Dog:def __init__(self, name):self.name namedef bark(self):return "Woof!"# 使用类 my_dog Dog("Buddy")…

如何解决pycharm在HTML文件中注释快捷键出错的问题(HTML注释规则出错)

文章目录 💢 问题 💢🏡 演示环境 🏡💯 解决方案 💯⚓️ 相关链接 ⚓️💢 问题 💢 你是否在编程时遇到过这样的烦恼?当你正专注地编写HTML代码,想要快速注释掉某部分内容时,却发现PyCharm的注释快捷键失灵了(没有使用正确的注释格式)。这不仅打断了你的工作…

每日一题10:Pandas:重塑数据-联结

一、每日一题 DataFrame df --------------------- | Column Name | Type | --------------------- | student_id | int | | name | object | | age | int | ---------------------DataFrame df --------------------- | Column Name | Type | --…

Cpython 的使用

前言 Python 程序中一些关键代码不想公开&#xff0c;可以使用 Cpython 来编译&#xff0c;然后正常导入 开始 需要明确一点&#xff0c;CPython 是 Python 的默认和最常用的解释器实现&#xff0c;而 .pyd 文件是一种特定于 Windows 的 Python 动态链接库&#xff08;DLL&a…

Spring Event--踩坑(注意事项)

原文网址&#xff1a;Spring Event--踩坑(注意事项)-CSDN博客 简介 本文介绍Spring的事件的使用注意事项。 Spring Event框架实现了基于事件的发布订阅机制。开发者可以自定义事件&#xff0c;发布事件&#xff0c;Spring 会将该事件广播给监听该事件的监听者。监听者可以实…

linux学习:视频输入+V4L2

目录 V4L2 视频采集流程 代码例子 核心命令字和结构体 VIDIOC_ENUM_FMT VIDIOC_G_FMT / VIDIOC_S_FMT / VIDIOC_TRY_FM VIDIOC_REQBUFS VIDIOC_QUERYBUF VIDIOC_QBUF /VIDIOC_DQBUF VIDIOC_STREAMON / VIDIOC_STREAMOFF V4L2 是 Linux 处理视频的最新标准代码模块&…

Java后端实现对象与文件接收数据(minio测试)

实现思路&#xff1a; 1. 两个接口实现&#xff0c;一个接对象数据(file)&#xff0c;一个接文件数据(json)。 2. json对象(base64String) 实体类信息 &#xff0c;请求体统一接收 3. file, String name ,String password ,String name &#xff0c; Controller层接收 统一…

如何查看PostgreSQL的版本

如何查看PostgreSQL的版本 要查看 PostgreSQL 的版本&#xff0c;有几种不同的方法可以使用&#xff0c;包括通过命令行和 SQL 查询。 1. 使用命令行 如果你有访问到服务器的命令行&#xff0c;并且 PostgreSQL 的命令行工具已经添加到了系统的 PATH 中&#xff0c;你可以非…

[muduo网络库]——muduo库noncopyable(剖析muduo网络库核心部分、设计思想)

接着之前我们[muduo网络库]——muduo库TcpConnection类&#xff08;剖析muduo网络库核心部分、设计思想&#xff09;&#xff0c;我们接下来继续看muduo库中的noncopyable。 这一类比较简单&#xff0c;并且我在另一篇博客里面&#xff0c;也有详细的介绍C 11以及muduo网络库中…

函数指针允许将函数作为参数传递或从函数返回函数

函数指针允许您将函数作为参数传递或从函数返回函数&#xff0c;从而实现灵活的行为和代码重用。它们在 C 编程中具有广泛的应用&#xff0c;包括回调、事件处理和算法选择。了解函数指针及其用法可以帮助您编写更模块化、可扩展和可定制的代码。以下是函数指针的一些实际应用示…

OpenHarmony 实战开发——如何编译OpenHarmony自带APP

概述 OpenHarmony 的主干代码是开源社区的重要学习资源&#xff0c;对于想进行应用开发和熟悉 OpenHarmony 能力的同学主干代码是非常重要的资源&#xff0c;在主干代码的 applications 目录里聚集了很多原生的应用实现&#xff0c;那么如何编译这些代码就是我们这篇文章的主要…

信息系统架构设计方法_1.ADM架构开发方法

1.TOGAF概述 TOGAF&#xff08;The Open Group Architecture Framework&#xff0c;TOGAF&#xff09;是一种开放式企业架构框架标准&#xff0c;它为标准、方法论和企业架构专业人员之间的沟通提供一致性保障。 TOGAF由国际标准权威组织The Open Group制定。The Open Group于1…

[初学rust] 01_简单打印

print println!() 基本使用 直接输出一个字符串 println!("hello world");{} 占位符 println!("{}", "hello world");

Vue3项目打包部署到云服务器的Nginx中

文章目录 一、打包vue3项目二、dist文件夹上传到服务器三、改nginx配置文件Docker安装nginx 一、打包vue3项目 npm run build 二、dist文件夹上传到服务器 将dist文件夹放到docker安装的nginx中的html目录下 三、改nginx配置文件 然后重启nginx【改了配置文件重启nginx才能…

消息中间件Kafka(PHP版本)

小编最近需要用到消息中间件&#xff0c;有需要要复习一下以前的东西&#xff0c;有需要的自取&#xff0c;强调一点&#xff0c;如果真的想了解透彻&#xff0c;一定要动手&#xff0c;脑袋会了不代表就会写了 Kafka是由Scala和Java编写。Kafka是一种高吞吐量的分布式发布订阅…

等保一体机能过三级等保吗?过等保无需再买安全设备如何做到?

等保一体机能过三级等保吗&#xff1f;过等保无需再买安全设备如何做到&#xff1f; 全云在线 2024-03-28 12:08 广东 尽管等保建设的标准是统一的&#xff0c;但由于不同行业和用户规模的差异&#xff0c;建设方案呈现出多样化的特点。 虽然重点行业过等保现象确实已经十分…