Submission #1263495


Source Code Expand

#include <vector>
#include <iostream>
#include <set>
#include <algorithm>
#include <map>
#include <string>
#include <cmath>
#include <tuple>

using namespace std;
typedef long long ll;
typedef pair<ll,ll> P; 
typedef tuple<ll,ll,ll> T;

int main(){
	ll N,M;
	cin >> N >> M;
	vector<ll> v(N);
	for(int i=0;i<M;i++){
		ll a,b;
		cin >> a >> b;
		v[a-1]++;
		v[b-1]++;
	}
	bool ok=true;
	for(int i=0;i<N;i++){
		if(v[i]%2!=0){
			ok=false;
		}
	}
	if(ok)
		cout << "YES" << endl;
	else
		cout << "NO" << endl;
	return 0;
}

Submission Info

Submission Time
Task B - Unplanned Queries
User base64
Language C++14 (GCC 5.4.1)
Score 500
Code Size 556 Byte
Status AC
Exec Time 57 ms
Memory 1024 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 56 ms 1024 KB
in10.txt AC 56 ms 1024 KB
in11.txt AC 48 ms 384 KB
in12.txt AC 55 ms 1024 KB
in13.txt AC 55 ms 1024 KB
in14.txt AC 56 ms 1024 KB
in15.txt AC 1 ms 256 KB
in16.txt AC 1 ms 256 KB
in2.txt AC 56 ms 1024 KB
in3.txt AC 56 ms 1024 KB
in4.txt AC 56 ms 1024 KB
in5.txt AC 56 ms 1024 KB
in6.txt AC 55 ms 1024 KB
in7.txt AC 57 ms 1024 KB
in8.txt AC 56 ms 1024 KB
in9.txt AC 56 ms 1024 KB
sample1.txt AC 1 ms 256 KB
sample2.txt AC 1 ms 256 KB