結果

問題 No.2684 折々の色
ユーザー ゆにぽけゆにぽけ
提出日時 2024-03-20 21:55:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 502 ms / 2,000 ms
コード長 2,077 bytes
コンパイル時間 1,535 ms
コンパイル使用メモリ 140,964 KB
実行使用メモリ 29,184 KB
最終ジャッジ日時 2024-09-30 07:45:48
合計ジャッジ時間 16,294 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 207 ms
18,688 KB
testcase_12 AC 128 ms
14,336 KB
testcase_13 AC 182 ms
21,888 KB
testcase_14 AC 84 ms
12,288 KB
testcase_15 AC 152 ms
16,384 KB
testcase_16 AC 31 ms
7,168 KB
testcase_17 AC 113 ms
13,056 KB
testcase_18 AC 223 ms
24,448 KB
testcase_19 AC 221 ms
22,144 KB
testcase_20 AC 130 ms
13,696 KB
testcase_21 AC 57 ms
9,216 KB
testcase_22 AC 338 ms
24,960 KB
testcase_23 AC 171 ms
15,232 KB
testcase_24 AC 85 ms
11,136 KB
testcase_25 AC 118 ms
12,672 KB
testcase_26 AC 244 ms
19,200 KB
testcase_27 AC 146 ms
13,568 KB
testcase_28 AC 170 ms
15,232 KB
testcase_29 AC 432 ms
28,416 KB
testcase_30 AC 382 ms
28,800 KB
testcase_31 AC 325 ms
29,056 KB
testcase_32 AC 488 ms
28,544 KB
testcase_33 AC 399 ms
28,800 KB
testcase_34 AC 419 ms
28,788 KB
testcase_35 AC 418 ms
28,928 KB
testcase_36 AC 324 ms
28,800 KB
testcase_37 AC 364 ms
29,056 KB
testcase_38 AC 488 ms
29,056 KB
testcase_39 AC 477 ms
29,184 KB
testcase_40 AC 502 ms
29,140 KB
testcase_41 AC 493 ms
29,088 KB
testcase_42 AC 492 ms
29,100 KB
testcase_43 AC 480 ms
29,184 KB
testcase_44 AC 490 ms
29,168 KB
testcase_45 AC 464 ms
29,136 KB
testcase_46 AC 469 ms
29,184 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 2 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 2 ms
5,248 KB
testcase_53 AC 2 ms
5,248 KB
testcase_54 AC 1 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 1 ms
5,248 KB
testcase_57 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <array>
#include <iterator>
#include <string>
#include <cctype>
#include <cstring>
#include <cstdlib>
#include <cassert>
#include <cmath>
#include <ctime>
#include <iomanip>
#include <numeric>
#include <stack>
#include <queue>
#include <map>
#include <unordered_map>
#include <set>
#include <unordered_set>
#include <bitset>
#include <random>
#include <utility>
#include <functional>
using namespace std;
using ull = unsigned long long;
const ull mod = (1ULL << 61) - 1;
ull mul(ull a,ull b)
{
	ull au = a >> 31;
	ull ad = a & ((1ULL << 31)-1);
	ull bu = b >> 31;
	ull bd = b & ((1ULL << 31)-1);
	ull mid = au*bd + bu*ad;
	ull midu = mid >> 30;
	ull midd = mid & ((1ULL << 30)-1);

	ull res = au*bu*2 + midu + (midd << 31) + ad*bd;

	res = (res >> 61) + (res & mod);
	if(res >= mod) res -= mod;

	return res;
}
mt19937_64 mt{(unsigned int)time(nullptr)};

void Main()
{
	ull base = mt() % mod;
	int N,M;
	cin >> N >> M;
	vector<int> X(M);
	for(int i = 0;i < M;i++)
	{
		cin >> X[i];
	}
	vector<vector<int>> C(N,vector<int>(M));
	vector<int> T(N);
	multiset<ull> S;
	vector<ull> H(N);
	for(int i = 0;i < N;i++)
	{
		for(int j = 0;j < M;j++)
		{
			cin >> C[i][j];
		}
		cin >> T[i];
		for(int j = 0;j < M;j++)
		{
			H[i] = mul(H[i],base) + T[i] * C[i][j];
			if(H[i] >= mod)
			{
				H[i] -= mod;
			}
		}
		S.insert(H[i]);
	}
	for(int i = 0;i < N;i++)
	{
		if(T[i] == 100)
		{
			if(C[i] == X)
			{
				cout << "Yes\n";
				return;
			}
			continue;
		}
		ull h = 0;
		bool ok = true;
		S.erase(S.find(H[i]));
		for(int j = 0;j < M;j++)
		{
			long long cur = 100 * X[j] - T[i] * C[i][j];
			cur *= 100;
			if(cur % (100 - T[i]) != 0)
			{
				ok = false;
				break;
			}
			cur /= 100 - T[i];
			h = mul(h,base) + cur;
			if(h >= mod)
			{
				h -= mod;
			}
		}
		if(ok)
		{
			if(S.find(h) != S.end())
			{
				cout << "Yes\n";
				return;
			}
		}
		S.insert(H[i]);
	}
	cout << "No\n";
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int tt = 1;
	/* cin >> tt; */
	while(tt--) Main();
}
0