博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 6015 Skip the Class
阅读量:5919 次
发布时间:2019-06-19

本文共 669 字,大约阅读时间需要 2 分钟。

代码:

 

#include
using namespace std;#define ll long long#define ls rt<<1,l,m#define rs rt<<1|1,m+1,r#define pb push_back#define mem(a,b) memset((a),(b),sizeof(a))const int INF=0x3f3f3f3f;const int N=105;struct lesson{ string s; int v; operator < (const lesson &t) const { return v>t.v; }}a[N];map
mp;int main(){ ios::sync_with_stdio(false); cin.tie(0); int t; cin>>t; while(t--) { mp.clear(); int n; cin>>n; for(int i=0;i
>a[i].s>>a[i].v; sort(a,a+n); int ans=0; for(int i=0;i

 

转载于:https://www.cnblogs.com/widsom/p/7295528.html

你可能感兴趣的文章