結果

問題 No.2684 折々の色
ユーザー てんぷらてんぷら
提出日時 2024-03-20 21:40:28
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,760 bytes
コンパイル時間 5,746 ms
コンパイル使用メモリ 317,864 KB
実行使用メモリ 43,264 KB
最終ジャッジ日時 2024-09-30 07:30:10
合計ジャッジ時間 19,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 WA -
testcase_09 AC 3 ms
5,248 KB
testcase_10 WA -
testcase_11 AC 196 ms
27,008 KB
testcase_12 AC 122 ms
19,456 KB
testcase_13 AC 238 ms
30,848 KB
testcase_14 AC 101 ms
17,280 KB
testcase_15 AC 154 ms
22,528 KB
testcase_16 AC 30 ms
8,960 KB
testcase_17 AC 118 ms
17,664 KB
testcase_18 AC 260 ms
34,432 KB
testcase_19 AC 254 ms
32,128 KB
testcase_20 AC 176 ms
19,328 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 440 ms
42,112 KB
testcase_30 AC 390 ms
42,680 KB
testcase_31 AC 390 ms
42,948 KB
testcase_32 AC 439 ms
42,496 KB
testcase_33 AC 449 ms
42,752 KB
testcase_34 AC 428 ms
42,584 KB
testcase_35 AC 436 ms
42,752 KB
testcase_36 AC 430 ms
42,520 KB
testcase_37 AC 427 ms
43,008 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
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 2 ms
5,248 KB
testcase_57 WA -
権限があれば一括ダウンロードができます

ソースコード

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