杭电多校联赛(一)补题

杭电第一场补题

1008.Maximal submatrix题解

Given a matrix of n rows and m columns,find the largest area submatrix which is non decreasing on each column

就是给定一个n*m的矩阵,找出最大的满足列非递减的区域面积。

这道题我刚开始使用的动态规划,也是先对矩阵进行预处理,然后用dp[i][j]表示以nums[i][j]为右下角的最大的满足题意的矩形面积,本算法的时间复杂度为O(N^3),经过测试,最终超出了时间限制。这是我的第一次代码:

#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
int T, N, M;
const int MaxN = 2001, MaxM = 2001;
int m[MaxN][MaxM];
int s[MaxN][MaxM];
int dp[MaxN][MaxM];
int res = 0;
int main(){
    cin >> T;
    while(T--){
        cin >> N;
        cin >> M;
        for (int i = 0; i < N; ++i){
            for (int j = 0; j < M; ++j){
                // cin >> m[i][j];
                scanf("%d", &m[i][j]);
                if(i == 0){
                    s[i][j] = 1;
                }else{
                    if(m[i][j] >= m[i-1][j]){
                        s[i][j] = s[i-1][j] + 1;
                    }else{
                        s[i][j] = 1;
                    }
                }
                int min_len = s[i][j];
               //这里对下标nums[i][j],min_len最大高度,表示在本行中,依次对本行前面的下标进行计算,取最大即可。这也是时间爆掉的原因,这里我们使用单调栈
                for(int k = j - 1; k >= 0; k--){
                    min_len = std::min(min_len, s[i][k]);
                    dp[i][j] = std::max(dp[i][j], (j-k+1)*min_len);
                }
                res = max(res, dp[i][j]);  
            }
        }
        cout << res << endl;
    }
}

经过校队同学的讲解,这道题目应该用单调栈来解决,关于悬线法,OI-WIKI有详细的介绍,其可以采用单调栈的方法来求解。

关于单调栈的使用,我们可以得到如下题解:

#include <iostream>
#include <cstring>
#include <algorithm>
#include <stack>
using namespace std;
int T, N, M;
const int MaxN = 2001, MaxM = 2001;
int m[MaxN][MaxM];
int s[MaxN][MaxM];
int res = 0;
std::stack<int> st;
int main(){
    cin >> T;
    while(T--){
        res = 0;
        st = stack<int>();
        cin >> N;
        cin >> M;
        //预处理
        for(unsigned i = 0; i < MaxN; ++i) {
            memset(s[i], 0, sizeof(s[i]));
            memset(m[i], 0, sizeof(m[i]));
        }
        for (int i = 0; i < N; ++i){
            for (int j = 1; j <= M; ++j){
                // cin >> m[i][j];
                scanf("%d", &m[i][j]);
                if(i == 0){
                    s[i][j] = 1;
                }else{
                    if(m[i][j] >= m[i-1][j]){
                        s[i][j] = s[i-1][j] + 1;
                    }else{
                        s[i][j] = 1;
                    }
                }
            }
        }
        //计算
        for(unsigned i = 0; i < N; ++i) {
            st = stack<int>();
            int area = 0;
            //最后一个为0,相当于增加一个哨兵
            for(unsigned j = 0; j <= M+1; ++j) {
                while(!st.empty() && s[i][j] < s[i][st.top()]){
                    int pop_index = st.top();
                    st.pop();
                    int pre_index = st.top();
                    area = (j - pre_index - 1) *  s[i][pop_index];
                    // cout << " ----------" << area << endl;
                    res = max(res, area);
                }
                st.push(j); 
            }
        }
        cout << res << endl;
    }
    return 0;
}

关于单调栈的模板,我们可以在首尾增加0来简化特殊情况判断,所以对于本题单调栈,模板为:

vector<int>& v; 
stack<int> &st;

v.insert(v.begin(), 0);
v.push_back(0);
for(int i = 0; i < v.size(); i++){
   while(!v.empty() && v[i] < v[st.top()]){
      int cur = st.top();
      st.pop();
      res = max(res, (i - st.top()-1)*v[cur] );
   }
   st.push(i);
}
return res;

1005.Minimum spanning tree

Problem Description

Given n-1 points, numbered from 2 to n, the edge weight between the two points a and b is lcm(a, b). Please find the minimum spanning tree formed by them.

A minimum spanning tree is a subset of the edges of a connected, edge-weighted undirected graph that connects all the vertices together, without any cycles and with the minimum possible total edge weight. That is, it is a spanning tree whose sum of edge weights is as small as possible.

lcm(a, b) is the smallest positive integer that is divisible by both a and b.

题意:给n-1个节点,每个节点之间权重为lcm(a,b),最小公倍数,求出最小连通子图的代价。

解题思路:

  • 对于素数我们取其到2的权重,就是2*node
  • 对于非素数,就是其自身

我们可以使用线性筛来求解素数。

线性筛

const int N = 1e7+7;
int pri[N]; //存储素数
int cnt;        //素数的个数
bool ispri[N];  //是否为素数
for(int i = 2; i < N; i++){
   ispri[i] = false;
}
for(int i = 2; i < N; i++){
   if(ispri[i]){
      pri[cnt++] = i;
   }
   for(int j = 0; j <= cnt; j++){
      if(i * cnt >= N) break;
      ispri[i * pri[j]] = 0;        //不满足条件 剔
      if(i % pri[j] == 0) break;    //后面的不找了
   }
}

由于本题的查询较多,所以应该先把答案数组打印:

#include <stdio.h>
#include <iostream>
#include <cstdlib>
#include <cmath>
#include <cctype>
#include <string>
#include <cstring>
#include <algorithm>
#include <stack>
#include <queue>
#include <set>
#include <map>
#include <ctime>
#include <vector>
#include <fstream>
#include <list>
#include <iomanip>
#include <numeric>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
#define ms(s) memset(s, 0, sizeof(s))
const int inf = 0x3f3f3f3f;

const int N = 1e7+7;
int pri[N]; //存储素数
int cnt = 0;        //素数的个数
bool ispri[N];  //是否为素数
ll ans[N];
int getPri(){
    for(int i = 2; i < N; i++){
       ispri[i] = true;
    }
    for(int i = 2; i < N; i++){
       if(ispri[i]){
          pri[cnt++] = i;
       }
       for(int j = 0; j <= cnt; j++){
          if(i * pri[j] >= N) break;
          ispri[i * pri[j]] = 0;        //不满足条件 剔
          if(i % pri[j] == 0) break;    //后面的不找了
       }
    }

}


int main(int argc, char * argv[]){
    getPri();
    ms(ans);
    int T , m;
    cin >> T;
    for(int i = 3; i < N; i++){
        if(ispri[i]) ans[i] = ans[i-1] +  (i << 1);
        else         ans[i] = ans[i-1] + i; 
    }
    while(T--){
        cin >> m;
        cout << ans[m] << endl;
    }

    return 0;
}

线性筛模板

int getPri(){
    const int N = 1e7+7;
    int pri[N];         //存储素数
    int cnt = 0;        //素数的个数
    bool ispri[N];      //是否为素数
    for(int i = 2; i < N; i++){
       ispri[i] = true;
    }
    for(int i = 2; i < N; i++){
       if(ispri[i]){
          pri[cnt++] = i;
       }
       for(int j = 0; j <= cnt; j++){
          if(i * pri[j] >= N) break;
          ispri[i * pri[j]] = 0;        //不满足条件 剔
          if(i % pri[j] == 0) break;    //后面的不找了
       }
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,723评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,003评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,512评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,825评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,874评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,841评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,812评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,582评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,033评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,309评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,450评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,158评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,789评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,409评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,609评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,440评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,357评论 2 352

推荐阅读更多精彩内容

  • 第 1 章 数据结构绪论 程序 = 数据结构 + 算法 数据结构:是相互之间存在的一种或多种特定关系的数据元素的集...
    Whyn阅读 13,922评论 0 12
  • 算法思想贪心思想双指针排序快速选择堆排序桶排序荷兰国旗问题二分查找搜索BFSDFSBacktracking分治动态...
    第六象限阅读 3,071评论 0 0
  • 课程介绍 先修课:概率统计,程序设计实习,集合论与图论 后续课:算法分析与设计,编译原理,操作系统,数据库概论,人...
    ShellyWhen阅读 2,276评论 0 3
  • 导语: 如果你已经加入了iOS攻城狮队伍,那么我们由衷地祝贺您正式成为一名终身学习的程序猿;有人觉得这句话...
    超人猿阅读 2,292评论 3 19
  • 第一部分: application 应用程式 应用、应用程序application framework 应用程式框...
    谷雨2058阅读 1,869评论 0 1