結果

問題 No.2684 折々の色
ユーザー kotatsugamekotatsugame
提出日時 2024-03-20 21:23:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 560 ms / 2,000 ms
コード長 853 bytes
コンパイル時間 604 ms
コンパイル使用メモリ 72,704 KB
実行使用メモリ 27,776 KB
最終ジャッジ日時 2024-09-30 07:09:07
合計ジャッジ時間 16,066 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 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 3 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 229 ms
17,792 KB
testcase_12 AC 94 ms
14,976 KB
testcase_13 AC 343 ms
23,168 KB
testcase_14 AC 126 ms
12,032 KB
testcase_15 AC 167 ms
17,408 KB
testcase_16 AC 28 ms
7,424 KB
testcase_17 AC 106 ms
13,824 KB
testcase_18 AC 338 ms
25,984 KB
testcase_19 AC 295 ms
21,120 KB
testcase_20 AC 157 ms
13,056 KB
testcase_21 AC 69 ms
9,600 KB
testcase_22 AC 394 ms
26,496 KB
testcase_23 AC 189 ms
14,592 KB
testcase_24 AC 108 ms
11,648 KB
testcase_25 AC 150 ms
13,312 KB
testcase_26 AC 271 ms
18,304 KB
testcase_27 AC 169 ms
14,208 KB
testcase_28 AC 187 ms
14,592 KB
testcase_29 AC 315 ms
27,008 KB
testcase_30 AC 290 ms
27,392 KB
testcase_31 AC 357 ms
27,520 KB
testcase_32 AC 398 ms
27,136 KB
testcase_33 AC 339 ms
27,392 KB
testcase_34 AC 401 ms
27,392 KB
testcase_35 AC 408 ms
27,392 KB
testcase_36 AC 324 ms
27,264 KB
testcase_37 AC 430 ms
27,520 KB
testcase_38 AC 529 ms
27,648 KB
testcase_39 AC 538 ms
27,648 KB
testcase_40 AC 518 ms
27,648 KB
testcase_41 AC 541 ms
27,776 KB
testcase_42 AC 548 ms
27,648 KB
testcase_43 AC 560 ms
27,648 KB
testcase_44 AC 549 ms
27,648 KB
testcase_45 AC 549 ms
27,648 KB
testcase_46 AC 557 ms
27,648 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 2 ms
5,248 KB
testcase_49 AC 1 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 2 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<array>
#include<set>
#include<cassert>
using namespace std;
using T=array<int,10>;
int N,M;
int X[10];
multiset<T>V[101];
T C[2<<17];
int t[2<<17];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>M;
	for(int i=0;i<M;i++)cin>>X[i];
	for(int i=0;i<N;i++)
	{
		for(int j=0;j<M;j++)cin>>C[i][j];
		cin>>t[i];
		V[t[i]].insert(C[i]);
	}
	for(int i=0;i<N;i++)
	{
		V[t[i]].erase(V[t[i]].find(C[i]));
		for(int tj=1;tj<=100;tj++)
		{
			bool ok=true;
			T nxt;
			for(int j=0;j<10;j++)
			{
				nxt[j]=10000*X[j];
				nxt[j]-=100*t[i]*C[i][j];
				nxt[j]+=tj*t[i]*C[i][j];
				int v=100*tj;
				if(nxt[j]%v!=0)
				{
					ok=false;
					break;
				}
				nxt[j]/=v;
			}
			if(ok&&V[tj].find(nxt)!=V[tj].end())
			{
				cout<<"Yes"<<endl;
				return 0;
			}
		}
		V[t[i]].insert(C[i]);
	}
	cout<<"No"<<endl;
}
0