結果

問題 No.1972 Modulo Set
ユーザー magstamagsta
提出日時 2021-08-04 16:54:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,265 bytes
コンパイル時間 7,258 ms
コンパイル使用メモリ 234,600 KB
実行使用メモリ 31,420 KB
最終ジャッジ日時 2024-10-05 01:20:37
合計ジャッジ時間 12,514 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 24 ms
6,232 KB
testcase_04 AC 37 ms
7,340 KB
testcase_05 AC 44 ms
8,032 KB
testcase_06 AC 85 ms
10,592 KB
testcase_07 AC 146 ms
17,480 KB
testcase_08 AC 48 ms
8,460 KB
testcase_09 AC 6 ms
5,248 KB
testcase_10 AC 37 ms
7,344 KB
testcase_11 AC 116 ms
14,072 KB
testcase_12 AC 17 ms
5,284 KB
testcase_13 AC 10 ms
5,248 KB
testcase_14 AC 10 ms
5,248 KB
testcase_15 AC 129 ms
16,112 KB
testcase_16 AC 147 ms
17,928 KB
testcase_17 AC 43 ms
8,480 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 113 ms
15,872 KB
testcase_20 AC 151 ms
18,384 KB
testcase_21 AC 55 ms
9,432 KB
testcase_22 AC 96 ms
14,400 KB
testcase_23 AC 233 ms
27,088 KB
testcase_24 AC 71 ms
12,876 KB
testcase_25 AC 126 ms
17,872 KB
testcase_26 AC 197 ms
19,924 KB
testcase_27 AC 240 ms
28,264 KB
testcase_28 AC 72 ms
13,124 KB
testcase_29 AC 121 ms
17,988 KB
testcase_30 AC 168 ms
23,128 KB
testcase_31 AC 8 ms
5,248 KB
testcase_32 AC 160 ms
21,288 KB
testcase_33 AC 277 ms
31,292 KB
testcase_34 AC 279 ms
31,420 KB
testcase_35 AC 278 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