結果

問題 No.2644 Iro Iro-Iro
ユーザー shobonvipshobonvip
提出日時 2024-02-16 05:41:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,925 ms / 2,000 ms
コード長 814 bytes
コンパイル時間 3,535 ms
コンパイル使用メモリ 236,120 KB
実行使用メモリ 232,776 KB
最終ジャッジ日時 2024-09-28 19:14:38
合計ジャッジ時間 67,243 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,773 ms
229,528 KB
testcase_01 AC 1,759 ms
229,656 KB
testcase_02 AC 1,819 ms
229,532 KB
testcase_03 AC 1,778 ms
229,800 KB
testcase_04 AC 1,779 ms
229,840 KB
testcase_05 AC 1,787 ms
229,964 KB
testcase_06 AC 1,770 ms
229,604 KB
testcase_07 AC 1,766 ms
229,856 KB
testcase_08 AC 1,773 ms
229,732 KB
testcase_09 AC 1,754 ms
229,560 KB
testcase_10 AC 1,753 ms
229,688 KB
testcase_11 AC 1,760 ms
229,628 KB
testcase_12 AC 1,754 ms
229,552 KB
testcase_13 AC 1,888 ms
232,192 KB
testcase_14 AC 1,871 ms
232,132 KB
testcase_15 AC 1,879 ms
232,112 KB
testcase_16 AC 1,894 ms
232,120 KB
testcase_17 AC 1,925 ms
232,200 KB
testcase_18 AC 1,910 ms
232,040 KB
testcase_19 AC 1,914 ms
232,048 KB
testcase_20 AC 1,911 ms
231,912 KB
testcase_21 AC 1,901 ms
232,156 KB
testcase_22 AC 1,872 ms
231,904 KB
testcase_23 AC 1,886 ms
232,364 KB
testcase_24 AC 1,889 ms
232,312 KB
testcase_25 AC 1,898 ms
232,296 KB
testcase_26 AC 1,902 ms
232,764 KB
testcase_27 AC 1,892 ms
232,320 KB
testcase_28 AC 1,759 ms
229,660 KB
testcase_29 AC 1,904 ms
232,776 KB
testcase_30 AC 1,864 ms
231,496 KB
testcase_31 AC 1,839 ms
231,500 KB
testcase_32 AC 1,908 ms
231,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/convolution>
#include<atcoder/modint>
typedef atcoder::static_modint<754974721> mint;

int main(){
	int n, m; cin >> n >> m;
	vector<int> a(n), b(n), c(n);
	vector<int> x(m), y(m), z(m);
	for (int i=0; i<n; i++){
		cin >> a[i] >> b[i] >> c[i];
	}
	for (int i=0; i<m; i++){
		cin >> x[i] >> y[i] >> z[i];
	}
	
	vector<mint> f(201 * 201 * 201);
	vector<mint> g(201 * 201 * 201);
	for (int i=0; i<n; i++){
		f[a[i] + b[i] * 201 + c[i] * 201 * 201] += 1;
		g[100 - a[i] + (100 - b[i]) * 201 + (100 - c[i]) * 201 * 201] += 1;
	}
	vector<mint> h = atcoder::convolution<mint>(f, g);
	int ans = 0;
	for (int i=0; i<m; i++){
		int t = h[(x[i] + 100) + (y[i] + 100) * 201 + (z[i] + 100) * 201 * 201].val();
		ans = max(ans, 2 * n - t);
	}
	cout << ans << '\n';
}
0