【CodeForces - 777C】Alyona and Spreadsheet(思维,前缀和)

题干:

During the lesson small girl Alyona works with one famous spreadsheet computer program and learns how to edit tables.

Now she has a table filled with integers. The table consists of n rows and mcolumns. By ai, j we will denote the integer located at the i-th row and the j-th column. We say that the table is sorted in non-decreasing order in the column j if ai, j ≤ ai + 1, j for all i from 1 to n - 1.

Teacher gave Alyona k tasks. For each of the tasks two integers l and r are given and Alyona has to answer the following question: if one keeps the rows from l to rinclusive and deletes all others, will the table be sorted in non-decreasing order in at least one column? Formally, does there exist such j that ai, j ≤ ai + 1, j for all i from l to r - 1 inclusive.

Alyona is too small to deal with this task and asks you to help!

Input

The first line of the input contains two positive integers n and m (1 ≤ n·m ≤ 100 000) — the number of rows and the number of columns in the table respectively. Note that your are given a constraint that bound the product of these two integers, i.e. the number of elements in the table.

Each of the following n lines contains m integers. The j-th integers in the i of these lines stands for ai, j (1 ≤ ai, j ≤ 109).

The next line of the input contains an integer k (1 ≤ k ≤ 100 000) — the number of task that teacher gave to Alyona.

The i-th of the next k lines contains two integers li and ri (1 ≤ li ≤ ri ≤ n).

Output

Print "Yes" to the i-th line of the output if the table consisting of rows from lito ri inclusive is sorted in non-decreasing order in at least one column. Otherwise, print "No".

Example

Input

5 4
1 2 3 5
3 1 3 2
4 5 2 3
5 5 3 2
4 4 3 4
6
1 1
2 5
4 5
3 5
1 3
1 5

Output

Yes
No
Yes
Yes
Yes
No

Note

In the sample, the whole table is not sorted in any column. However, rows 1–3 are sorted in column 1, while rows 4–5 are sorted in column 3.

题目大意:

给出n*m的矩阵,有k次查询,每次查询给出l和r,如果第l行到r行至少有一列是非递减的,则输出Yes,否则输出No

解题报告:

预处理一个数组sum,按列更新,考虑sum[i][j],如果这个数比他上面那个数大的话,就sum[i-1][j]+1,否则为1.

然后看到给出的询问都是对于行的,所以我们先把对于每一行而言,每一列的信息都压缩给这一行,维护一个c数组,对于每一行,二分查找他能递增到的最大的行,对于check函数,只要判断区间和是否等于区间长度即可,注意取前缀和的时候不能sum[r]-sum[l-1]了,因为这个前缀信息是断裂的,所以需要sum[r]-sum[l]+1这样。每次查询的时候O1输出即可。总复杂度O(n*m*log(n))

AC代码:

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<queue>
#include<stack>
#include<map>
#include<vector>
#include<set>
#include<string>
#include<cmath>
#include<cstring>
#define FF first
#define SS second
#define ll long long
#define pb push_back
#define pm make_pair
using namespace std;
typedef pair<int,int> PII;
const int MAX = 2e5 + 5;
int n,m,c[MAX];
vector<vector<int>> vv,sum;
bool ok(int up,int down) {for(int j = 1; j<=m; j++) {if(sum[down][j] - sum[up][j] +1 == down-up+1) return 1;}return 0;
}
int main()
{cin>>n>>m;vv.resize(n+1);sum.resize(n+1);for(int i = 0; i<=n; i++) {vv[i].resize(m+1);sum[i].resize(m+1);}for(int x,i = 1; i<=n; i++) {for(int j = 1; j<=m; j++) scanf("%d",&x),vv[i][j]=x;}for(int j = 1; j<=m; j++) {for(int i = 1; i<=n; i++) {if(vv[i][j] >= vv[i-1][j]) sum[i][j] = sum[i-1][j]+1;else sum[i][j] = 1;}}for(int i = 1; i<=n; i++) {int l=i,r=n,mid,ans=0;while(l<=r) {mid=(l+r)>>1;if(ok(i,mid)) l = mid+1,ans = mid;else r = mid-1;}c[i] = ans;}int q,l,r;cin>>q;while(q--) {scanf("%d%d",&l,&r);if(c[l] >= r) puts("Yes");else puts("No");			}return 0 ;
}

 

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

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

相关文章

Coursera自动驾驶课程第3讲:Self-Driving Hardware and Software Architectures

在上一讲《Coursera自动驾驶课程第2讲&#xff1a;The Requirements for Autonomy》中我们了解到了如何划分自动驾驶汽车等级、以及自动驾驶三大模块&#xff1a;感知、决策和执行。 本讲我们将学习新的模块&#xff1a;自动驾驶汽车的硬件和软件架构。 B站视频链接&#xff…

一步步编写操作系统 54 CPL和DPL入门1

我们在工作中&#xff0c;公司都给员工配有员工卡&#xff0c;此员工卡就是员工身份的“标签”&#xff0c;用它来出入公司、食堂就餐等。给公司创造价值的是员工的生产力&#xff0c;不是员工卡&#xff0c;员工卡只是公司人事部门管理员工的一种手段而已。 现在说计算机&…

Coursera自动驾驶课程第4讲:Safety Assurance for Autonomous Vehicles

在上一讲《Coursera自动驾驶课程第3讲&#xff1a;Self-Driving Hardware and Software Architectures》中我们了解了自动驾驶汽车常用的传感器和硬件组件、软件系统。 本讲我们将学习新的模块&#xff0c;也是自动驾驶汽车最重要的模块之一&#xff1a;安全模块。 B站视频链…

【Codeforces - 1000C】Covered Points Count(思维,离散化,差分)

题干&#xff1a; You are given nn segments on a coordinate line; each endpoint of every segment has integer coordinates. Some segments can degenerate to points. Segments can intersect with each other, be nested in each other or even coincide. Your task i…

Coursera自动驾驶课程第5讲:Vehicle Dynamic Modeling

在上一讲《Coursera自动驾驶课程第4讲&#xff1a;Safety Assurance for Autonomous Vehicles》中我们了解了自动驾驶汽车中一个非常重要的模块&#xff1a;安全模块。 本讲我们将学习新的模块&#xff1a;汽车运动学和动力学模块。&#xff08;这部分可能需要一定的理论力学和…

详细解析电源滤波电容的选取与计算

电感的阻抗与频率成正比&#xff0c;电容的阻抗与频率成反比。所以&#xff0c;电感可以阻扼高频通过&#xff0c;电容可以阻扼低频通过。二者适当组合&#xff0c;就可过滤各种频率信号。如在整流电路中&#xff0c;将电容并在负载上或将电感串联在负载上&#xff0c;可滤去交…

【CodeForces - 124C】Prime Permutation(数学,思维,小结论)

题干&#xff1a; You are given a string s, consisting of small Latin letters. Lets denote the length of the string as |s|. The characters in the string are numbered starting from 1. Your task is to find out if it is possible to rearrange characters in st…

Java同步锁——lock与synchronized 的区别【转】

在网上看来很多关于同步锁的博文&#xff0c;记录下来方便以后阅读 一、Lock和synchronized有以下几点不同&#xff1a; 1&#xff09;Lock是一个接口&#xff0c;而synchronized是Java中的关键字&#xff0c;synchronized是内置的语言实现&#xff0c;synchronized是在JVM层面…

Coursera自动驾驶课程第6讲:Vehicle Longitudinal Control

在上一讲《Coursera自动驾驶课程第5讲&#xff1a;Vehicle Dynamic Modeling》中我们了解了汽车运动学和动力学模块。 本讲我们继续学习新的模块&#xff1a;汽车纵向控制。具体地&#xff0c;我们将学习PID控制算法&#xff0c;看看该算法是如何在自动驾驶汽车中应用的。 B站…

【CodeForces - 599C 】Day at the Beach(思维)

题干&#xff1a; 给定一个数列A&#xff0c;要求你将这个数列划分成几个连续的部分&#xff0c;使得每部分分别从小到大排序后整个数列有序。 问最多可以划分成几个部分。 Input 第一行包含一个整数 n (1 ≤ n ≤ 100 000) — 表示数列的长度 之后一行 n 个整数 hi …

Java并发:线程共享变量可见性原理

0、线程安全性&#xff1a;线程安全性包括两个方面&#xff0c;①可见性。②原子性。 0.1、线程之间的通信&#xff1a;线程的通信是指线程之间以何种机制来交换信息。在命令式编程中&#xff0c;线程之间的通信机制有两种共享内存和消息传递。 &#xff08;1&#xff09;在共…

Coursera自动驾驶课程第7讲:Vehicle Lateral Control

在上一讲《Coursera自动驾驶课程第6讲&#xff1a;Vehicle Longitudinal Control》中我们了解了如何使用PID算法进行汽车纵向控制。 本讲我们继续学习新的模块&#xff1a;汽车横向控制。具体地&#xff0c;我们将学习三种控制算法&#xff1a;Pure pursuit&#xff0c;Stanle…

【CodeForces - 697C】Lorenzo Von Matterhorn(二叉树,思维)

题干&#xff1a; 巴尼住在NYC。NYC具有从1开始的正整数编号的无数个交叉点。在交叉点 i 和 2i 之间以及 i和 2i  1 之间存在双向道路&#xff0c;对任意整数 i 都满足。在任意两点之间都有且只有一条最短路。 最初任何人都可以通过任何道路免费。 但是后来发生了 q 个事件。…

Coursera自动驾驶课程第8讲:Basics of 3D Computer Vision

在上一讲《Coursera自动驾驶课程第7讲&#xff1a;Vehicle Lateral Control》中我们了解了如何对汽车进行横向控制。 本课程第一个篇章就暂时告一段落了&#xff0c;接下来我们开始学习新的篇章。 课程第二个篇章是状态估计和定位模块。不过在这里我做了一下调整&#xff0c;我…

volatile和synchronized的区别与联系

这个可能是最好的对比volatile和synchronized作用的文章了。volatile是一个变量修饰符&#xff0c;而synchronized是一个方法或块的修饰符。所以我们使用这两种关键字来指定三种简单的存取变量的方式。 int i1; int geti1() { return i1; } volati…

【CodeForces - 628C】Bear and String Distance(贪心,构造)

Description 定义两个小写字母之间的距离为这两个字母在字母表中的距离&#xff0c;如dis(a,z)25,dis(a,c)2&#xff0c;两个长度相同串的距离为这两个串对应位置字母距离之和。现给出一个长度为n的串s和一个距离k&#xff0c;问是否存在一个长度为n的串ss&#xff0c;使得dis…

Coursera自动驾驶课程第9讲:Visual Features Detection Description and Matching

在上一讲《Coursera自动驾驶课程第8讲&#xff1a;Basics of 3D Computer Vision》中我们学习了计算机视觉基本知识。 本讲我们将学习计算机视觉中的视觉特征模块。 B站视频链接&#xff1a;https://www.bilibili.com/video/BV1PE411D72p 文章目录1. Introduction to Image f…

【CodeForces - 514C】Watto and Mechanism(字符串哈希)

题干&#xff1a; 输入n个字符串&#xff0c;然后进行m次询问&#xff0c;每次询问输入一个字符串&#xff0c;问n个字符串中是否存在与当前输入的字符串长度相等&#xff0c;并且刚好有且仅有一个位置的字符不同。存在则输出YES&#xff0c;不存在输出NO。 Examples Input …

并发编程(原子性、可见性、一致性)

1、原子性&#xff08;Atomicity&#xff09; 原子性是指在一个操作中就是cpu不可以在中途暂停然后再调度&#xff0c;既不被中断操作&#xff0c;要不执行完成&#xff0c;要不就不执行。 如果一个操作时原子性的&#xff0c;那么多线程并发的情况下&#xff0c;就不会出现变…

Coursera自动驾驶课程第10讲:Feedforward Neural Networks

在上一讲《Coursera自动驾驶课程第9讲&#xff1a;Visual Features Detection Description and Matching》中我们学习了如何进行图像特征检测&#xff0c;特征匹配以及如何构建视觉里程计来估计相机的运动。 本讲我们将学习神经网络模块&#xff0c;关于神经网络或深度学习网上…