結果

問題 No.2684 折々の色
ユーザー てんぷらてんぷら
提出日時 2024-03-20 21:41:21
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 464 ms / 2,000 ms
コード長 1,760 bytes
コンパイル時間 5,055 ms
コンパイル使用メモリ 319,220 KB
実行使用メモリ 46,216 KB
最終ジャッジ日時 2024-09-30 07:31:46
合計ジャッジ時間 18,531 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 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 196 ms
28,544 KB
testcase_12 AC 118 ms
20,352 KB
testcase_13 AC 219 ms
31,232 KB
testcase_14 AC 93 ms
17,408 KB
testcase_15 AC 139 ms
23,680 KB
testcase_16 AC 28 ms
9,344 KB
testcase_17 AC 106 ms
18,304 KB
testcase_18 AC 232 ms
35,328 KB
testcase_19 AC 240 ms
33,024 KB
testcase_20 AC 136 ms
19,456 KB
testcase_21 AC 47 ms
12,672 KB
testcase_22 AC 246 ms
37,904 KB
testcase_23 AC 144 ms
23,296 KB
testcase_24 AC 70 ms
15,744 KB
testcase_25 AC 98 ms
18,176 KB
testcase_26 AC 190 ms
29,556 KB
testcase_27 AC 115 ms
19,456 KB
testcase_28 AC 141 ms
22,912 KB
testcase_29 AC 380 ms
43,964 KB
testcase_30 AC 352 ms
44,172 KB
testcase_31 AC 335 ms
43,436 KB
testcase_32 AC 381 ms
45,084 KB
testcase_33 AC 356 ms
43,744 KB
testcase_34 AC 382 ms
44,732 KB
testcase_35 AC 368 ms
44,972 KB
testcase_36 AC 336 ms
42,992 KB
testcase_37 AC 353 ms
43,944 KB
testcase_38 AC 393 ms
46,000 KB
testcase_39 AC 464 ms
46,128 KB
testcase_40 AC 463 ms
46,216 KB
testcase_41 AC 417 ms
46,052 KB
testcase_42 AC 405 ms
46,004 KB
testcase_43 AC 399 ms
46,148 KB
testcase_44 AC 412 ms
46,096 KB
testcase_45 AC 396 ms
46,052 KB
testcase_46 AC 417 ms
46,132 KB
testcase_47 AC 2 ms
6,816 KB
testcase_48 AC 1 ms
6,816 KB
testcase_49 AC 2 ms
6,820 KB
testcase_50 AC 1 ms
6,816 KB
testcase_51 AC 2 ms
6,820 KB
testcase_52 AC 1 ms
6,816 KB
testcase_53 AC 2 ms
6,820 KB
testcase_54 AC 2 ms
6,816 KB
testcase_55 AC 2 ms
6,816 KB
testcase_56 AC 1 ms
6,816 KB
testcase_57 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
using ll = long long;
using ull = unsigned long long;
#define rep(i, n) for(int i = 0; i < (int)(n); i++)
#define REP(i, m, n) for(int i = (int)(m); i < (int)(n); i++)
using namespace std;
using namespace atcoder;
using mint = modint998244353;
const int inf = 1000000007;
const ll longinf = 1ll << 60;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int n, m;
    cin >> n >> m;
    vector<int> y(m);
    rep(i, m) {
        cin >> y[i];
        y[i] *= 10000;
    }
    vector x(n, vector(m, 0));
    vector<int> t(n);
    map<vector<int>, int> mp;
    rep(i, n) {
        rep(j, m) cin >> x[i][j];
        cin >> t[i];
        rep(j, m) {
            x[i][j] *= t[i];
        }
        mp[x[i]] += 1;
    }
    rep(i, n) {
        vector<int> target = y;
        rep(j, m) {
            target[j] -= 100 * x[i][j];
        }
        if(t[i] == 100) {
            bool ok = true;
            rep(j, m) {
                if(target[j] != 0)
                    ok = false;
            }
            if(ok) {
                cout << "Yes" << endl;
                return 0;
            }
        } else {
            bool ok = true;
            rep(j, m) {
                if(target[j] % (100 - t[i])) {
                    ok = false;
                    break;
                } else {
                    target[j] /= 100 - t[i];
                }
            }
            if(ok) {
                int cnt = mp[target];
                if(target == x[i])
                    --cnt;
                if(cnt > 0) {
                    cout << "Yes" << endl;
                    return 0;
                }
            }
        }
    }
    cout << "No" << endl;
    return 0;
}
0