[ZOJ 4014] Pretty Matrix

Posted youpeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[ZOJ 4014] Pretty Matrix相关的知识,希望对你有一定的参考价值。

题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=5742

AC代码:

/*
 * 反思:
 * 1.遇到简单题别激动,先把它所有的输入任务都完成了,在考虑处理的问题
 * 2.当你的程序没有按回车就全部运行完的时候,这段程序十有八九是有问题的,
 * 仔细检查是不是输入没输入全,或者特殊字符没处理或者运行过程中遇到问题了。
 */

#include <cstdio>

using namespace std;

int test;
int n, m, a, b;
int x, sum, cnt;

int main() {
    scanf("%d", &test);
    while (test--) {
        scanf("%d%d%d%d", &n, &m, &a, &b);
        sum = n * m;
        if (a > b) {
            while (sum--) {
                scanf("%d", &x);
            }
            printf("No Solution\n");
        } else {
            cnt = 0;
            while (sum--) {
                scanf("%d", &x);
                if (x < a || x > b) {
                    cnt++;
                }
            }
            printf("%d\n", cnt);
        }
    }
    return 0;
}

以上是关于[ZOJ 4014] Pretty Matrix的主要内容,如果未能解决你的问题,请参考以下文章

ZOJ 题目2859 Matrix Searching(二维RMQ)

Saddle Point ZOJ - 3955 题意题

SQL Server出现错误: 4014

抑制“警告 CS4014:因为不等待此调用,当前方法的执行继续......”

P4014 分配问题 网络流

codevs 4014EZ系列