Submission #1605650


Source Code Expand

#include<bits/stdc++.h>

using namespace std;
#define int long long
#define double long double
#define rep(i, n) for(int i=0;i<(n);++i)
#define INF (1ll<<60)
#define FI first
#define SE second
typedef pair<int, int> pii;
#define l_b lower_bound
#define u_b upper_bound

int N, M;
int cnt[100100];

signed main() {
    cin >> N >> M;
    rep(i, M) {
        int a, b;
        cin >> a >> b;
        --a;
        --b;
        ++cnt[a];
        ++cnt[b];
    }
    rep(i, N) {
        if (cnt[i] % 2 == 1) {
            cout << "NO" << endl;
            return 0;
        }
    }
    cout << "YES" << endl;
}

Submission Info

Submission Time
Task B - Unplanned Queries
User aaabbbcccddd
Language C++14 (GCC 5.4.1)
Score 500
Code Size 638 Byte
Status AC
Exec Time 56 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 55 ms 1024 KB
in10.txt AC 55 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 55 ms 1024 KB
in3.txt AC 55 ms 1024 KB
in4.txt AC 55 ms 1024 KB
in5.txt AC 55 ms 1024 KB
in6.txt AC 56 ms 1024 KB
in7.txt AC 55 ms 1024 KB
in8.txt AC 55 ms 1024 KB
in9.txt AC 55 ms 1024 KB
sample1.txt AC 1 ms 256 KB
sample2.txt AC 1 ms 256 KB