Submission #7966433


Source Code Expand

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <string>
#include <vector>
#include <list>
#include <set>
#include <map>
#include <stack>
#include <queue>
#define llong long long
#define INF (__INT32_MAX__ / 2)
#define EPS 10e-8
#define MAX_NMX 100000

using namespace std;
typedef pair<llong, llong> ipair;
llong modulo(llong left, llong right) { return (left % right + right) % right; }

int N, M, X[MAX_NMX];

int numbers[MAX_NMX + 1];
int not_paired[MAX_NMX];
int pairs[MAX_NMX];


int solve() {
    for(int i = 0; i < N; ++i)
        numbers[X[i]]++;

    for(int i = 0; i <= MAX_NMX; ++i) {
        pairs[i % M] += numbers[i] / 2;
        if(numbers[i] % 2 == 1)
            not_paired[i % M]++;
    }

    int res = 0;
    for(int i = 0; i * 2 <= M; ++i)
        if(i == 0 || i * 2 == M) {
            res += not_paired[i] / 2;
        } else {
            
            if(not_paired[i] > not_paired[M - i]) { 
                int carry = min(not_paired[i] - not_paired[M - i], 2 * pairs[M - i]);
                res += not_paired[M - i] + carry;
                pairs[M - i] = (2 * pairs[M - i] - carry) / 2;

            } else if(not_paired[i] < not_paired[M - i]) { 
                int carry = min(not_paired[M - i] - not_paired[i], 2 * pairs[i]);
                res += not_paired[i] + carry;
                pairs[i] = (2 * pairs[i] - carry) / 2;

            } else {
                res += not_paired[i];
            }
        }

    for(int i = 0; i < M; ++i)
        res += pairs[i];

    return res;
}

int main(int argc, char **argv) {
    cin >> N >> M;
    for(int i = 0; i < N; ++i)
        cin >> X[i];

    cout << solve() << endl;   
}

Submission Info

Submission Time
Task D - Pair Cards
User iosink
Language C++14 (GCC 5.4.1)
Score 700
Code Size 1808 Byte
Status AC
Exec Time 38 ms
Memory 1792 KB

Judge Result

Set Name sample all
Score / Max Score 0 / 0 700 / 700
Status
AC × 2
AC × 34
Set Name Test Cases
sample sample-01.txt, sample-02.txt
all sample-01.txt, sample-02.txt, 01-01.txt, 01-02.txt, 01-03.txt, 01-04.txt, 01-05.txt, 01-06.txt, 01-07.txt, 01-08.txt, 01-09.txt, 01-10.txt, 01-11.txt, 01-12.txt, 01-13.txt, 01-14.txt, 01-15.txt, 01-16.txt, 01-17.txt, 01-18.txt, 01-19.txt, 01-20.txt, 01-21.txt, 01-22.txt, 01-23.txt, 01-24.txt, 01-25.txt, 01-26.txt, 01-27.txt, 01-28.txt, 01-29.txt, 01-30.txt, sample-01.txt, sample-02.txt
Case Name Status Exec Time Memory
01-01.txt AC 2 ms 256 KB
01-02.txt AC 37 ms 1024 KB
01-03.txt AC 37 ms 1024 KB
01-04.txt AC 37 ms 1024 KB
01-05.txt AC 36 ms 1024 KB
01-06.txt AC 37 ms 1024 KB
01-07.txt AC 37 ms 1024 KB
01-08.txt AC 37 ms 1024 KB
01-09.txt AC 38 ms 1024 KB
01-10.txt AC 38 ms 1408 KB
01-11.txt AC 37 ms 1792 KB
01-12.txt AC 37 ms 640 KB
01-13.txt AC 37 ms 768 KB
01-14.txt AC 36 ms 1024 KB
01-15.txt AC 37 ms 1024 KB
01-16.txt AC 37 ms 1024 KB
01-17.txt AC 36 ms 1024 KB
01-18.txt AC 36 ms 1024 KB
01-19.txt AC 37 ms 1152 KB
01-20.txt AC 37 ms 1792 KB
01-21.txt AC 36 ms 1024 KB
01-22.txt AC 37 ms 1024 KB
01-23.txt AC 36 ms 1024 KB
01-24.txt AC 36 ms 1024 KB
01-25.txt AC 37 ms 1280 KB
01-26.txt AC 37 ms 1792 KB
01-27.txt AC 19 ms 1280 KB
01-28.txt AC 3 ms 1408 KB
01-29.txt AC 2 ms 896 KB
01-30.txt AC 2 ms 768 KB
sample-01.txt AC 2 ms 256 KB
sample-02.txt AC 2 ms 256 KB