結果

問題 No.2684 折々の色
ユーザー 沙耶花沙耶花
提出日時 2024-03-20 21:38:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,017 ms / 2,000 ms
コード長 1,089 bytes
コンパイル時間 4,781 ms
コンパイル使用メモリ 271,052 KB
実行使用メモリ 52,480 KB
最終ジャッジ日時 2024-09-30 07:28:40
合計ジャッジ時間 28,312 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 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 455 ms
25,472 KB
testcase_12 AC 93 ms
17,664 KB
testcase_13 AC 652 ms
28,160 KB
testcase_14 AC 272 ms
16,512 KB
testcase_15 AC 293 ms
21,248 KB
testcase_16 AC 53 ms
7,808 KB
testcase_17 AC 180 ms
16,384 KB
testcase_18 AC 599 ms
25,600 KB
testcase_19 AC 575 ms
29,952 KB
testcase_20 AC 332 ms
23,296 KB
testcase_21 AC 180 ms
9,600 KB
testcase_22 AC 705 ms
25,928 KB
testcase_23 AC 413 ms
23,168 KB
testcase_24 AC 249 ms
11,776 KB
testcase_25 AC 339 ms
16,128 KB
testcase_26 AC 549 ms
29,696 KB
testcase_27 AC 378 ms
19,712 KB
testcase_28 AC 411 ms
22,912 KB
testcase_29 AC 390 ms
50,928 KB
testcase_30 AC 330 ms
45,184 KB
testcase_31 AC 475 ms
45,952 KB
testcase_32 AC 598 ms
51,072 KB
testcase_33 AC 418 ms
51,576 KB
testcase_34 AC 645 ms
45,048 KB
testcase_35 AC 660 ms
45,440 KB
testcase_36 AC 412 ms
45,312 KB
testcase_37 AC 723 ms
45,824 KB
testcase_38 AC 944 ms
52,480 KB
testcase_39 AC 949 ms
51,968 KB
testcase_40 AC 1,017 ms
52,224 KB
testcase_41 AC 942 ms
52,096 KB
testcase_42 AC 936 ms
52,220 KB
testcase_43 AC 939 ms
52,352 KB
testcase_44 AC 953 ms
52,096 KB
testcase_45 AC 949 ms
52,340 KB
testcase_46 AC 961 ms
52,024 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 2 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 1 ms
5,248 KB
testcase_57 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001


int main(){
	
	ios::sync_with_stdio(false);
	std::cin.tie(nullptr);
	
	int n,m;
	cin>>n>>m;
	vector<long long> x(m);
	rep(i,m){
		cin>>x[i];
		x[i] *= 10000;
	}
	
	vector c(n,vector<long long>(m));
	vector<long long> t(n);
	vector<vector<vector<long long>>> S(101);
	rep(i,n){
		rep(j,m)cin>>c[i][j];
		cin>>t[i];
		S[t[i]].push_back(c[i]);
	}
	rep(i,101)sort(S[i].begin(),S[i].end());
	
	rep(i,n){
		for(int j=1;j<=100;j++){
			vector<long long> goal(m,-1);
			rep(k,m){
				long long cur = x[k];
				cur += c[i][k] * t[i] * j;
				cur -= c[i][k] * t[i] * 100;
				if(cur % (100 * j) != 0)break;
				cur /= 100 * j;
				goal[k] = cur;
				
			}
			if(goal[m-1]==-1)continue;
			if(goal == c[i])continue;
			if(binary_search(S[j].begin(),S[j].end(),goal)){
				cout<<"Yes"<<endl;
				return 0;
			}
		}
	}
	cout<<"No"<<endl;
	return 0;
}
0