結果

問題 No.2684 折々の色
ユーザー shobonvip
提出日時 2024-03-20 22:41:35
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,762 bytes
コンパイル時間 4,244 ms
コンパイル使用メモリ 262,544 KB
最終ジャッジ日時 2025-02-20 09:43:14
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9 TLE * 1 -- * 46
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

int main(){
	int n, m; cin >> n >> m;
	vector<int> x(m);
	rep(i,0,m) cin >> x[i];

	vector<vector<int>> c(n, vector<int>(m));
	vector<int> t(n);
	rep(i,0,n){
		rep(j,0,m) cin >> c[i][j];
		cin >> t[i];
	}

	vector<map<vector<int>,vector<int>>> mp(101);
	rep(g,1,101){	
		rep(i,0,n){
			vector<int> dr(m);
			rep(j,0,m){
				dr[j] = (100-g) * t[i] * c[i][j];
			}
			if (mp[g][dr].size() >= 2) continue;
			mp[g][dr].push_back(i);
		}
	}

	rep(i,0,n){
		vector<int> tar(m);
		rep(j,0,m){
			tar[j] = 10000*x[j] - 100*t[i]*c[i][j];			
		}
		vector<int> lst = mp[t[i]][tar];
		bool mode = 0;
		for (int x: lst){
			if (x == i) continue;
			mode = 1;
		}
		if (mode){
			cout << "Yes\n";
			return 0;
		}
	}
	cout << "No\n";
}

0