Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
52358 AK2022071333 子网 C++ 运行出错 5 1 MS 308 KB 560 2022-07-19 11:59:20

Tests(1/20):


#include <bits/stdc++.h> using namespace std; struct nd { int b,l; } a[4500]; bool cmp(nd a,nd b) { if(a.l==b.l) { return a.b<b.b; } return a.l>b.l; } int main() { ios::sync_with_stdio(false); cin.tie(0),cout.tie(0); int m,n; cin>>n>>m; for(int i=1; i<=m; i++) { int x; cin>>x>>a[i].b>>a[i].l; } sort(a+1,a+n+1,cmp); int ans=1,b=a[1].b,l=a[1].l; for(int i=2; i<=m; i++) { if(b!=a[i].b&&b!=a[i].l&&l!=a[i].b&&l!=a[i].l) { ans++; } } cout<<ans; return 0; }


测评信息: