A: 直接遍历即可
#include<bits/stdc.h>
using namespace std;typedef long long ll;
typedef pair<ll, ll>PII;
const int N 2e6 10;
const int MOD 998244353;
const int INF 0X3F3F3F3F;int n, m;
int main()
{cin >> n;int cnt 0;for(int i 0; i …
前言:
map和 set 是 C STL(标准模板库)中的两种非常重要的容器,它们基于一种叫做平衡二叉搜索树(通常是红黑树)的数据结构来实现。在 C 中,map 是一个键值对容器,set 只存储唯一的键…