Submission #1569665


Source Code Expand

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> P;
typedef pair<int,P> P1;
typedef pair<P,P> P2;
#define pu push
#define pb push_back
#define mp make_pair
#define eps 1e-7
#define INF 1000000000
#define mod 1000000007
#define fi first
#define sc second
#define rep(i,x) for(int i=0;i<x;i++)
#define repn(i,x) for(int i=1;i<=x;i++)
#define SORT(x) sort(x.begin(),x.end())
#define ERASE(x) x.erase(unique(x.begin(),x.end()),x.end())
#define POSL(x,v) (lower_bound(x.begin(),x.end(),v)-x.begin())
#define POSU(x,v) (upper_bound(x.begin(),x.end(),v)-x.begin())
int n,m; int cnt[100005];
int main(){
	cin>>n>>m;
	rep(i,m){
		int a,b;cin>>a>>b;cnt[a]++;cnt[b]++;
	}
	repn(i,n) if(cnt[i]%2==1){ puts("NO"); return 0;}
	puts("YES");
}

Submission Info

Submission Time
Task B - Unplanned Queries
User IH19980412
Language C++14 (GCC 5.4.1)
Score 500
Code Size 796 Byte
Status AC
Exec Time 71 ms
Memory 640 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 500 / 500
Status
AC × 2
AC × 20
Set Name Test Cases
Sample sample1.txt, sample2.txt
All sample1.txt, sample2.txt, in1.txt, in10.txt, in11.txt, in12.txt, in13.txt, in14.txt, in15.txt, in16.txt, in2.txt, in3.txt, in4.txt, in5.txt, in6.txt, in7.txt, in8.txt, in9.txt, sample1.txt, sample2.txt
Case Name Status Exec Time Memory
in1.txt AC 69 ms 640 KB
in10.txt AC 70 ms 640 KB
in11.txt AC 60 ms 256 KB
in12.txt AC 71 ms 640 KB
in13.txt AC 69 ms 640 KB
in14.txt AC 71 ms 640 KB
in15.txt AC 1 ms 256 KB
in16.txt AC 1 ms 256 KB
in2.txt AC 69 ms 640 KB
in3.txt AC 70 ms 640 KB
in4.txt AC 69 ms 640 KB
in5.txt AC 71 ms 640 KB
in6.txt AC 69 ms 640 KB
in7.txt AC 71 ms 640 KB
in8.txt AC 69 ms 640 KB
in9.txt AC 70 ms 640 KB
sample1.txt AC 1 ms 256 KB
sample2.txt AC 1 ms 256 KB