結果

問題 No.2684 折々の色
ユーザー SnowBeenDiding
提出日時 2024-03-20 22:48:56
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,876 ms / 2,000 ms
コード長 1,323 bytes
コンパイル時間 5,338 ms
コンパイル使用メモリ 318,632 KB
実行使用メモリ 53,920 KB
最終ジャッジ日時 2024-09-30 08:57:21
合計ジャッジ時間 48,075 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 56
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/all>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace std;
using namespace atcoder;

typedef long long ll;

ll make_hash(vector<ll> &v) {
    ll ret = 0;
    for (auto &x : v) ret = ret * 1000000007 + x;
    return ret;
}

int main() {
    int h, w;
    cin >> h >> w;
    vector<ll> x(w), t(h);
    rep(i, 0, w) cin >> x[i];
    vector<vector<ll>> c(h, vector<ll>(w));
    unordered_map<ll, int> ma;
    rep(i, 0, h) {
        rep(j, 0, w) cin >> c[i][j];
        cin >> t[i];
        c[i].push_back(t[i]);
        ma[make_hash(c[i])]++;
    }

    vector<ll> none = {-1};
    auto f = [&](int ind, ll tt) {
        vector<ll> ret(w);
        rep(j, 0, w) {
            ll q = 10000LL * x[j];
            q -= (100LL - tt) * t[ind] * c[ind][j];
            ll p = tt * 100;
            if (abs(q) % abs(p) != 0) return none;
            ret[j] = q / p;
        }
        ret.push_back(tt);
        return ret;
    };

    rep(i, 0, h) {
        ma[make_hash(c[i])]--;
        rep(j, 1, 101) {
            auto v = f(i, j);
            if (v == none) continue;
            if (ma[make_hash(v)]) {
                cout << "Yes" << endl;
                return 0;
            }
        }
        ma[make_hash(c[i])]++;
    }

    cout << "No" << endl;
}
0