結果

問題 No.2684 折々の色
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-03-21 01:10:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,265 ms / 2,000 ms
コード長 2,467 bytes
コンパイル時間 2,310 ms
コンパイル使用メモリ 213,980 KB
実行使用メモリ 43,136 KB
最終ジャッジ日時 2024-09-30 09:53:52
合計ジャッジ時間 27,076 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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 242 ms
25,472 KB
testcase_12 AC 119 ms
16,640 KB
testcase_13 AC 494 ms
33,280 KB
testcase_14 AC 222 ms
17,280 KB
testcase_15 AC 173 ms
20,992 KB
testcase_16 AC 27 ms
7,680 KB
testcase_17 AC 107 ms
14,592 KB
testcase_18 AC 523 ms
37,372 KB
testcase_19 AC 495 ms
32,128 KB
testcase_20 AC 316 ms
19,200 KB
testcase_21 AC 94 ms
12,544 KB
testcase_22 AC 609 ms
38,272 KB
testcase_23 AC 374 ms
21,760 KB
testcase_24 AC 162 ms
15,744 KB
testcase_25 AC 279 ms
18,432 KB
testcase_26 AC 584 ms
27,512 KB
testcase_27 AC 295 ms
19,712 KB
testcase_28 AC 356 ms
21,632 KB
testcase_29 AC 383 ms
32,384 KB
testcase_30 AC 330 ms
30,964 KB
testcase_31 AC 918 ms
42,880 KB
testcase_32 AC 607 ms
40,320 KB
testcase_33 AC 287 ms
26,240 KB
testcase_34 AC 419 ms
35,816 KB
testcase_35 AC 408 ms
35,200 KB
testcase_36 AC 889 ms
42,496 KB
testcase_37 AC 867 ms
42,880 KB
testcase_38 AC 1,064 ms
43,064 KB
testcase_39 AC 1,062 ms
43,068 KB
testcase_40 AC 1,260 ms
43,060 KB
testcase_41 AC 1,075 ms
43,128 KB
testcase_42 AC 1,177 ms
43,124 KB
testcase_43 AC 1,265 ms
43,136 KB
testcase_44 AC 1,147 ms
43,104 KB
testcase_45 AC 1,109 ms
43,008 KB
testcase_46 AC 1,224 ms
43,008 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 2 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 1 ms
5,248 KB
testcase_57 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

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];
    }
    for (int i = 0; i < n; i++) {
        if (t[i] == 100 && c[i] == x) {
            cout << "Yes\n";
            return 0;
        }
    }
    set<array<pair<int, int>, 10>> st;
    for (int i = 0; i < n; i++) {
        if (t[i] != 100) {
            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--) {
        if (t[i] != 100) {
            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