码迷,mamicode.com
首页 > 其他好文 > 详细

P3613 【深基15.例2】寄包柜

时间:2019-12-22 12:23:46      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:while   数组   传送门   main   int   tps   span   是你   else   

传送门

题目大意

往一个\(a[i][j]\) 里边放东西,也可以取走东西,然后查询\(a[i][j]\)里边是什么东西。

思路:

显然我们可以暴力,但是你开不了那么大的数组。
翻了翻dalao们的题解,为什么要用结构体呢??
直接\(map\)他不香吗?
我们用一个\(map<int,int> ma[N];\)当做暴力的数组来做。
因为\(map\)如这个STL如果不访问的话是不是占空间的,那么我们就可以为所欲为A掉这个题了。
code:

#include <bits/stdc++.h>

#define N 100010
#define M 1010

using namespace std;
int n, q;
map<int, int>ma[N];

int read() {
    int s = 0, f = 0; char ch = getchar();
    while (!isdigit(ch)) f |= (ch == '-'), ch = getchar();
    while (isdigit(ch)) s = s * 10 + (ch ^ 48), ch = getchar();
    return f ? -s : s;
}

int main() {
    n = read(), q = read();
    for (int i = 1, opt, x, y, sy; i <= q; i++) {
        opt = read(), x = read(), y = read();
        if (opt == 1) {
            sy = read();
            ma[x][y] = sy;
        } else printf("%d\n", ma[x][y]);
    }
    return 0;
}

P3613 【深基15.例2】寄包柜

标签:while   数组   传送门   main   int   tps   span   是你   else   

原文地址:https://www.cnblogs.com/zzz-hhh/p/12079205.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!