AGC033D Complexity

2024-03-08 23:32
文章标签 complexity agc033d

本文主要是介绍AGC033D Complexity,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题目链接
如果直接DP设 f [ i ] [ j ] [ k ] [ l ] f[i][j][k][l] f[i][j][k][l]记录矩形,瓶颈在于状态数上。
考虑减少状态数,其实也是一个比较套路的方法,发现答是 l o g log log级别的,于是把其中一维状态改为答案,DP值改为那维状态,转移时考虑横着还是竖着切,一边直接用上一个转,一边利用单调性转即可,效率 O ( n 3 l o g n ) O(n^{3}logn) O(n3logn)
代码:

#include<bits/stdc++.h>
using namespace std;
const int N=205;
int n,m,f[2][N][N][N],a[N][N];
bool check(int j,int k,int l,int r){int x=(k-j+1)*(r-l+1),y=a[k][r]-a[j-1][r]-a[k][l-1]+a[j-1][l-1];return (!y || x==y);
}
int main()
{//freopen(".in","r",stdin);//freopen(".out","w",stdout);cin>>n>>m;for(int i=1;i<=n;i++) for(int j=1;j<=m;j++){char c; scanf(" %c",&c);a[i][j]=(c=='#')+a[i-1][j]+a[i][j-1]-a[i-1][j-1];}for(int x=0;x<2;x++) for(int j=1;j<=n+1;j++)for(int l=1;l<=m;l++) f[x][j][j-1][l]=N;for(int j=1;j<=n;j++) for(int k=j;k<=n;k++){for(int l=m;l;l--){if(l==m) f[0][j][k][l]=m;else f[0][j][k][l]=f[0][j][k][l+1];while(!check(j,k,l,f[0][j][k][l])) f[0][j][k][l]--;//cout<<j<<" "<<k<<" "<<l<<" "<<f[0][j][k][l]<<endl;}}//return 0;for(int i=1;;i++){int x=(i&1);if(f[!x][1][n][1]==m){cout<<i-1<<endl; return 0;}for(int j=1;j<=n;j++) for(int k=j;k<=n;k++)for(int l=1;l<=m;l++) f[x][j][k][l]=f[!x][j][k][f[!x][j][k][l]+1];for(int j=1;j<=n;j++) for(int l=1;l<=m;l++){for(int k=j,p=j;k<=n;k++){while(p<k && min(f[!x][j][p][l],f[!x][p+1][k][l])<=min(f[!x][j][p+1][l],f[!x][p+2][k][l])) p++;f[x][j][k][l]=max(f[x][j][k][l],min(f[!x][j][p][l],f[!x][p+1][k][l]));}}}return 0;
}

这篇关于AGC033D Complexity的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/788784

相关文章

越复杂的CoT越有效吗?Complexity-Based Prompting for Multi-step Reasoning

Complexity-Based Prompting for Multi-step Reasoning 论文:https://openreview.net/pdf?id=yf1icZHC-l9 Github:https://github.com/FranxYao/chain-of-thought-hub 发表位置:ICLR 2023 Complexity-Based Prompting for

九度oj-Zero-complexity Transposition

时间限制:1 秒 内存限制:32 兆 特殊判题:否 提交:3102 解决:1262 题目描述: You are given a sequence of integer numbers. Zero-complexity transposition of the sequence is the reverse of this sequence. Your task is to

Foundation of Machine Learning 笔记第五部分 (2) —— Rademacher Complexity 和 VC 维

前言 注意事项: 这个系列的文章虽然题为书本《Foundation of Machine Learning》的读书笔记,但实际我是直接对书本的部分内容进行了个人翻译,如果这个行为有不妥当的地方,敬请告知。由于知识面限制,部分名词的翻译可能存在错误,部分难以翻译的名词保留英文原词。为了防止误导大家,在这里声明本文仅供参考。本文基本翻译自《Foundation of Machine Learnin

Foundation of Machine Learning 笔记第五部分 (1) —— Rademacher Complexity 和 VC 维

前言 注意事项: 这个系列的文章虽然题为书本《Foundation of Machine Learning》的读书笔记,但实际我是直接对书本的部分内容进行了个人翻译,如果这个行为有不妥当的地方,敬请告知。由于知识面限制,部分名词的翻译可能存在错误,部分难以翻译的名词保留英文原词。为了防止误导大家,在这里声明本文仅供参考。本文基本翻译自《Foundation of Machine Learnin

OPW-00029: Password complexity failed for SYS user : Password must contain at least 8 characters.

orapwd file=$ORACLE_HOME/dbs/orapw+实例名 password=oracle entries=5; orapwd file=$ORACLE_HOME/dbs/orapw+实例名 password=oracle format=12 force=y; file——密码文件名(必要)。password——SYS 的密码(必要)。entries——DBA

什么是Cyclomatic Complexity(圈复杂度)

圈复杂度(Cyclomatic Complexity)是一种代码复杂度的衡量标准。它可以用来衡量一个模块判定结构的复杂程度,数量上表现为独立线性路径条数,也可理解为覆盖所有的可能情况最少使用的测试用例数。圈复杂度大说明程序代码的判断逻辑复杂,可能质量低且难于测试和维护。程序的可能错误和高的圈复杂度有着很大关系。 下面这个实例中,单元测试的覆盖率可以达到100%,但是很容易发现这其中已经漏掉了一个

[Linformer]论文实现:Linformer: Self-Attention with Linear Complexity

文章目录 一、完整代码二、论文解读2.1 介绍2.2 Self-Attention is Low Rank2.3 模型架构2.4 结果 三、整体总结 论文:Linformer: Self-Attention with Linear Complexity 作者:Sinong Wang, Belinda Z. Li, Madian Khabsa, Han Fang, Hao Ma

可重构MIMO性能增益理论分析(Low-Complexity Reconfigurable MIMO for Millimeter Wave Communications 阅读笔记)

可重构MIMO性能增益理论分析(Low-Complexity Reconfigurable MIMO for Millimeter Wave Communications 阅读笔记) 绪论本文贡献framework方面贡献性能增益方面贡献 framework方面贡献模态信道传输过程实际信道虚拟信道( Virtual Channel Representation, VCR)低维VCR 收发机

Understanding the Complexity in System Architecture

Structure, Functionality, Behavior, and Algorithms Introduction: Building a robust and scalable system requires careful consideration of various factors, including system complexity. As a professiona

2015-2016 ACM-ICPC Complexity

题目地址:http://codeforces.com/gym/100819/attachments 题目: Define the complexity of a string to be the number of distinct letters in it. For example, the stringstring has complexity 6 and the string lett