結果

問題 No.2684 折々の色
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-03-21 01:07:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 2,130 bytes
コンパイル時間 2,024 ms
コンパイル使用メモリ 213,640 KB
実行使用メモリ 43,148 KB
最終ジャッジ日時 2024-09-30 09:53:12
合計ジャッジ時間 26,697 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 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 3 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 RE -
testcase_12 AC 121 ms
16,640 KB
testcase_13 AC 531 ms
33,280 KB
testcase_14 AC 222 ms
17,280 KB
testcase_15 AC 149 ms
20,864 KB
testcase_16 AC 24 ms
7,680 KB
testcase_17 AC 99 ms
14,720 KB
testcase_18 AC 493 ms
37,376 KB
testcase_19 AC 559 ms
32,028 KB
testcase_20 AC 327 ms
19,328 KB
testcase_21 AC 97 ms
12,544 KB
testcase_22 AC 597 ms
38,288 KB
testcase_23 AC 370 ms
21,760 KB
testcase_24 AC 161 ms
15,744 KB
testcase_25 AC 252 ms
18,432 KB
testcase_26 AC 541 ms
27,648 KB
testcase_27 AC 339 ms
19,712 KB
testcase_28 AC 359 ms
21,628 KB
testcase_29 AC 383 ms
32,384 KB
testcase_30 AC 334 ms
31,188 KB
testcase_31 AC 912 ms
42,952 KB
testcase_32 AC 605 ms
40,448 KB
testcase_33 AC 288 ms
26,240 KB
testcase_34 AC 415 ms
35,752 KB
testcase_35 AC 403 ms
35,260 KB
testcase_36 AC 890 ms
42,624 KB
testcase_37 RE -
testcase_38 AC 1,079 ms
43,028 KB
testcase_39 AC 1,166 ms
43,084 KB
testcase_40 AC 1,120 ms
43,064 KB
testcase_41 RE -
testcase_42 RE -
testcase_43 AC 1,257 ms
43,148 KB
testcase_44 RE -
testcase_45 RE -
testcase_46 AC 1,261 ms
43,136 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 2 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 2 ms
5,248 KB
testcase_57 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
void fast_io() {
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
}

int main() {
    fast_io();
    int n, m;
    cin >> n >> m;
    vector<int> x(m);
    for (int i = 0; i < m; i++) {
        cin >> x[i];
    }
    vector<vector<int>> c(n, vector<int>(m));
    vector<int> t(n);
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++) {
            cin >> c[i][j];
        }
        cin >> t[i];
    }
    set<array<pair<int, int>, 10>> st;
    for (int i = 0; i < n; i++) {
        array<pair<int, int>, 10> need;
        for (int j = 0; j < m; j++) {
            int a = 100 * x[j] - t[i] * c[i][j];
            int b = 100 - t[i];
            int g = gcd(a, b);
            if (a < 0) {
                a = -a;
                b = -b;
            }
            need[j] = {a / g, b / g};
        }
        if (st.count(need)) {
            cout << "Yes\n";
            return 0;
        }
        array<pair<int, int>, 10> data;
        for (int j = 0; j < m; j++) {
            int a = t[i] * c[i][j];
            int b = 100;
            int g = gcd(a, b);
            if (a < 0) {
                a = -a;
                b = -b;
            }
            data[j] = {a / g, b / g};
        }
        st.insert(data);
    }
    st.clear();
    for (int i = n - 1; i >= 0; i--) {
        array<pair<int, int>, 10> need;
        for (int j = 0; j < m; j++) {
            int a = 100 * x[j] - t[i] * c[i][j];
            int b = 100 - t[i];
            int g = gcd(a, b);
            if (a < 0) {
                a = -a;
                b = -b;
            }
            need[j] = {a / g, b / g};
        }
        if (st.count(need)) {
            cout << "Yes\n";
            return 0;
        }
        array<pair<int, int>, 10> data;
        for (int j = 0; j < m; j++) {
            int a = t[i] * c[i][j];
            int b = 100;
            int g = gcd(a, b);
            if (a < 0) {
                a = -a;
                b = -b;
            }
            data[j] = {a / g, b / g};
        }
        st.insert(data);
    }
    cout << "No\n";
}
0