結果

問題 No.2684 折々の色
ユーザー KKT89KKT89
提出日時 2024-03-20 21:17:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 735 ms / 2,000 ms
コード長 1,599 bytes
コンパイル時間 3,055 ms
コンパイル使用メモリ 225,224 KB
実行使用メモリ 59,648 KB
最終ジャッジ日時 2024-09-30 07:04:09
合計ジャッジ時間 24,285 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 295 ms
29,340 KB
testcase_12 AC 117 ms
21,248 KB
testcase_13 AC 397 ms
33,920 KB
testcase_14 AC 163 ms
18,816 KB
testcase_15 AC 204 ms
24,832 KB
testcase_16 AC 39 ms
8,704 KB
testcase_17 AC 136 ms
19,328 KB
testcase_18 AC 395 ms
32,340 KB
testcase_19 AC 377 ms
34,944 KB
testcase_20 AC 226 ms
25,984 KB
testcase_21 AC 99 ms
11,264 KB
testcase_22 AC 449 ms
33,220 KB
testcase_23 AC 258 ms
26,496 KB
testcase_24 AC 145 ms
13,952 KB
testcase_25 AC 216 ms
18,816 KB
testcase_26 AC 398 ms
33,920 KB
testcase_27 AC 252 ms
23,040 KB
testcase_28 AC 284 ms
26,368 KB
testcase_29 AC 511 ms
58,240 KB
testcase_30 AC 392 ms
52,568 KB
testcase_31 AC 447 ms
53,112 KB
testcase_32 AC 540 ms
58,608 KB
testcase_33 AC 456 ms
59,008 KB
testcase_34 AC 530 ms
52,608 KB
testcase_35 AC 521 ms
52,984 KB
testcase_36 AC 429 ms
52,664 KB
testcase_37 AC 556 ms
53,248 KB
testcase_38 AC 680 ms
59,508 KB
testcase_39 AC 712 ms
59,648 KB
testcase_40 AC 681 ms
59,604 KB
testcase_41 AC 685 ms
59,452 KB
testcase_42 AC 690 ms
59,508 KB
testcase_43 AC 691 ms
59,508 KB
testcase_44 AC 735 ms
59,516 KB
testcase_45 AC 732 ms
59,556 KB
testcase_46 AC 701 ms
59,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 1 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 #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef unsigned long long int ull;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) {
    return (ull)rng() % B;
}
inline double time() {
    return static_cast<long double>(chrono::duration_cast<chrono::nanoseconds>(chrono::steady_clock::now().time_since_epoch()).count()) * 1e-9;
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n, m; cin >> n >> m;
    vector<ll> x(m);
    for (int i = 0; i < m; ++i) {
        cin >> x[i];
        x[i] *= 10000;
    }
    set<vector<ll>> st[101];
    vector<vector<ll>> b(n);
    vector<ll> t(n);
    for (int i = 0; i < n; ++i) {
        vector<ll> a(m);
        for (int j = 0; j < m; ++j) {
            cin >> a[j];
        }
        b[i] = a;
        cin >> t[i];
        st[t[i]].insert(a);
    }

    vector<ll> target(m);
    for (int j = 0; j < n; ++j) {
        for (int ti = 1; ti <= 100; ++ti) {
            bool ok = true;
            for (int i = 0; i < m; ++i) {
                target[i] = x[i] - (100LL - ti) * t[j] * b[j][i];
                if (target[i]%(100*ti)) {
                    ok = false;
                    break;
                }
                else {
                    target[i] /= (100*ti);
                }
            }
            if (!ok) continue;
            if (st[ti].find(target) != st[ti].end() and target != b[j]) {
                cout << "Yes" << endl;
                return 0;
            }
        }
    }
    cout << "No" << endl;
}
0