gpt4 book ai didi

c++ - 如何处理 map 的 map ?

转载 作者:行者123 更新时间:2023-11-28 06:33:49 25 4
gpt4 key购买 nike

我正在努力寻找解决这个问题的办法 http://codeforces.com/problemset/problem/159/A

为了找到解决方案,我想到了通过制作 map 的 map 来呈现输入。对于此输入,我的 map 应如下所示:

m["vasya"]={{"petya",1}}

m["petya"]={{"vasya",2}}

m["anya"]={{"ivan",2}}

m["ivan"]={{"anya",4}}

下面是我的代码。

和我的分配代码://m[s1]=(ii(s2,t));错了

我的问题是如何分配给 map 的 map ?

#include<iostream>
#include <cstdio>
#include <map>
#include <set>
#include <string>
#include<vector>
using namespace std;

int main(){
typedef map<string, int> ii;
map<string, ii> m;

int n,d;
cin>>n>>d;

string s1,s2,t;
for(int i=0;i<n;i++)
{
cin>>s1>>s2>>t;
// m[s1]=(ii(s2,t));
}

return 0;
}

有人能帮忙吗?

最佳答案

你可以这样写:

m[s1][s2] = t;

我假设你的意思是 int t;而不是 string t;因为 map 中的最后一个类型是 int .

关于c++ - 如何处理 map 的 map ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27094299/

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