#include <iostream>
#include <vector>
#include <algorithm>//#include<bits/stdc++.h> 同理
using namespace std;
typedef long long ll;//typedef > ll <long long>
struct Item {//使用struct
int val;
int id;
Item(int v, int i) : val(v), id(i) {}
};
bool cmp(const Item& a, const Item& b) {
return a.val > b.val;//bool
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);//效率高
}