gpt4 book ai didi

c++ - 无法使用 map 找到可能的运行时错误

转载 作者:搜寻专家 更新时间:2023-10-31 01:07:05 25 4
gpt4 key购买 nike

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

#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

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

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

最佳答案

我看到您的代码有很多可能的改进,但没有运行时错误的原因。但是,在很多法官系统上,我看到内存限制显示为运行时错误,我相信您的代码也是如此。

提示:尝试使用 google 二叉索引树和嵌套二叉索引树。谷歌翻译在翻译声明方面并不完美,但我相信这可能会引导您找到一个渐近更好的解决方案。

关于c++ - 无法使用 map 找到可能的运行时错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19817609/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com