使用地图无法找到可能的运行时错误

问题描述 投票:2回答:2

我在某处遇到了分段错误,但由于我无法访问案例测试(这是由编程竞赛网站上的自动评判判断的)我无法找到答案。

#include <iostream>
#include <stdio.h>
#include <map>
#include <algorithm>

using namespace std;

typedef pair<unsigned short int, unsigned short int> par;

int main(){
    int x, y, p, q, a1, b1, a2, b2, val;
    int cont, lin_min, lin_max, col_min, col_max;
    char cmd;
    while((cin >> x >> y >> p) && !(x==0 && y==0 && p==0)){
        cin >> q;
        //Using "getchar ()" to avoid reading line end, because below I'm reading a character
        getchar();
        map<par, int> matriz;
        map<par, int>::iterator it;
        for(int i=0;i<q;i++){
            cin >> cmd;
            //if command 'A' insert in matriz or incremente if already exists
            if(cmd=='A'){
                cin >> val >> a1 >> b1;
                //insert into map (my implementation for sparse matrix)
                matriz[par(a1, b1)]+=val;
            }else 
            //if command 'P' performs a search in the rectangle (a1, b1 to a2, b2)
            if(cmd=='P'){
                cont=0;
                cin >> a1 >> b1 >> a2 >> b2;
                lin_min = min(a1,a2);
                lin_max = max(a1,a2);
                col_min = min(b1,b2);
                col_max = max(b1,b2);
                //traverses the sparse matrix by summing the values that belong to the rectangle
                //I STRONGLY believe that the error is somewhere around here
                for(it=matriz.begin(); it!=matriz.end(); ++it){
                    if((it->first.first>=lin_min && it->first.first<=lin_max)&&
                        (it->first.second>=col_min && it->first.second<=col_max)){
                        cont+=it->second;
                    }
                    if (it->first.first>lin_max && it->first.second>col_max) break;
                }
                cout << cont*p << "\n";
            }
        }
    }
    return 0;
}

输入示例:

2 2 10
7
A 11 1 1
A 4 1 0
A 20 0 0
P 1 0 1 1
A 1 0 1
A 6 1 0
P 0 1 1 0
0 0 0

两天来,我一直在寻找可能无法访问内存的地方,但我找不到或想到任何内容。

此代码中哪些可能的行会导致可能的运行时错误?

c++ dictionary runtime-error std-pair
2个回答
4
投票

我看到你的代码有很多可能的改进,但没有理由发生运行时错误。然而,在很多判断系统中,我看到内存限制显示为运行时错误,我相信你的代码也是如此。

提示:尝试谷歌二进制索引树和嵌套二进制索引树。谷歌翻译在翻译声明方面并不完美,但我相信这可能会让你找到渐进式渐进的解决方案。


0
投票

首先,请尝试在代码中使用typedef,以便于阅读。其次我没有看到你的代码中的任何错误,并且运行正常,根据给定输入给出输出150,420。我在许多在线判断测试平台上运行它并且没有运行时错误。在www.ideone.com上尝试

© www.soinside.com 2019 - 2024. All rights reserved.