結果

問題 No.1972 Modulo Set
ユーザー magstamagsta
提出日時 2022-06-06 14:12:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,265 bytes
コンパイル時間 6,140 ms
コンパイル使用メモリ 236,632 KB
実行使用メモリ 32,980 KB
最終ジャッジ日時 2024-10-05 01:21:23
合計ジャッジ時間 10,693 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 21 ms
6,232 KB
testcase_04 AC 31 ms
7,336 KB
testcase_05 AC 39 ms
8,036 KB
testcase_06 AC 67 ms
10,588 KB
testcase_07 AC 104 ms
17,492 KB
testcase_08 AC 39 ms
8,456 KB
testcase_09 AC 5 ms
5,248 KB
testcase_10 AC 32 ms
7,352 KB
testcase_11 AC 93 ms
14,132 KB
testcase_12 AC 14 ms
5,272 KB
testcase_13 AC 8 ms
5,248 KB
testcase_14 AC 9 ms
5,248 KB
testcase_15 AC 108 ms
16,124 KB
testcase_16 AC 116 ms
17,884 KB
testcase_17 AC 37 ms
8,476 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 92 ms
15,748 KB
testcase_20 AC 118 ms
18,428 KB
testcase_21 AC 47 ms
9,428 KB
testcase_22 AC 79 ms
14,400 KB
testcase_23 AC 178 ms
27,092 KB
testcase_24 AC 60 ms
12,884 KB
testcase_25 AC 98 ms
18,004 KB
testcase_26 AC 148 ms
19,900 KB
testcase_27 AC 184 ms
28,260 KB
testcase_28 AC 61 ms
13,136 KB
testcase_29 AC 97 ms
17,860 KB
testcase_30 AC 136 ms
23,128 KB
testcase_31 AC 7 ms
5,248 KB
testcase_32 AC 127 ms
21,220 KB
testcase_33 AC 249 ms
31,296 KB
testcase_34 AC 245 ms
31,420 KB
testcase_35 AC 237 ms
31,296 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <utility>
#include <cmath>
#include <cstdlib>
#include <map>
#include <set>
#include <queue>
#include <vector>
#include "testlib.h"
using namespace std;
#define MOD 998244353

int main() {
    registerValidation();
    long long N = inf.readLong((long long)1, (long long)100000, "N");
    inf.readSpace();
    long long M = inf.readLong((long long)1, (long long)1000000000000, "M");
    inf.readEoln();
    vector<long long> A(N);
    A[0] = inf.readLong((long long)1, (long long)1000000000000, "A1");
    map<long long, long long> Map2;
    Map2[A[0]]++;
    for (int i = 1; i < N; i++) {
        inf.readSpace();
        A[i] = inf.readLong((long long)1, (long long)1000000000000, "A");
        Map2[A[i]]++;
        if (Map2[A[i]] > 1) cout << -1 << endl;
    }
    inf.readEoln();
    inf.readEof();

	map<long long, long long> Map;
	set<long long> Set;
	for (int i = 0; i < N; i++) {
		Map[A[i] % M]++;
		Set.insert(A[i] % M);
	}

	long long count = 0;
	while (!Set.empty()) {
		long long a = *Set.begin();
		Set.erase(Set.begin());
		if (a == 0 || a * 2 == M) {
			count++;
		}
		else {
			count += max(Map[a], Map[M - a]);
			Map[a] = 0;
			Map[M - a] = 0;
		}
	}

	cout << count << endl;
}
0