結果

問題 No.2684 折々の色
ユーザー udon1206udon1206
提出日時 2024-03-20 21:48:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 618 ms / 2,000 ms
コード長 2,540 bytes
コンパイル時間 2,153 ms
コンパイル使用メモリ 214,068 KB
実行使用メモリ 59,588 KB
最終ジャッジ日時 2024-09-30 07:36:05
合計ジャッジ時間 17,596 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 150 ms
27,904 KB
testcase_12 AC 81 ms
17,608 KB
testcase_13 AC 301 ms
34,048 KB
testcase_14 AC 125 ms
18,688 KB
testcase_15 AC 97 ms
22,016 KB
testcase_16 AC 18 ms
7,296 KB
testcase_17 AC 68 ms
15,616 KB
testcase_18 AC 290 ms
32,224 KB
testcase_19 AC 279 ms
35,004 KB
testcase_20 AC 174 ms
25,856 KB
testcase_21 AC 65 ms
11,136 KB
testcase_22 AC 387 ms
33,148 KB
testcase_23 AC 201 ms
26,496 KB
testcase_24 AC 97 ms
13,952 KB
testcase_25 AC 140 ms
18,688 KB
testcase_26 AC 281 ms
33,920 KB
testcase_27 AC 171 ms
22,912 KB
testcase_28 AC 194 ms
26,240 KB
testcase_29 AC 269 ms
45,964 KB
testcase_30 AC 246 ms
39,784 KB
testcase_31 AC 518 ms
53,072 KB
testcase_32 AC 323 ms
56,192 KB
testcase_33 AC 224 ms
38,452 KB
testcase_34 AC 262 ms
44,952 KB
testcase_35 AC 259 ms
44,372 KB
testcase_36 AC 498 ms
52,628 KB
testcase_37 AC 453 ms
53,108 KB
testcase_38 AC 581 ms
59,500 KB
testcase_39 AC 600 ms
59,552 KB
testcase_40 AC 594 ms
59,588 KB
testcase_41 AC 595 ms
59,508 KB
testcase_42 AC 594 ms
59,432 KB
testcase_43 AC 599 ms
59,484 KB
testcase_44 AC 618 ms
59,568 KB
testcase_45 AC 586 ms
59,532 KB
testcase_46 AC 598 ms
59,548 KB
testcase_47 AC 2 ms
6,820 KB
testcase_48 AC 1 ms
6,820 KB
testcase_49 AC 2 ms
6,820 KB
testcase_50 AC 2 ms
6,816 KB
testcase_51 AC 2 ms
6,816 KB
testcase_52 AC 2 ms
6,816 KB
testcase_53 AC 2 ms
6,816 KB
testcase_54 AC 1 ms
6,820 KB
testcase_55 AC 2 ms
6,816 KB
testcase_56 AC 2 ms
6,820 KB
testcase_57 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using ll = long long;
using std::cin;
using std::cout;
using std::endl;

std::mt19937 rnd(std::chrono::steady_clock::now().time_since_epoch().count());
template <class T>
inline bool chmax(T &a, T b)
{
    if (a < b)
    {
        a = b;
        return 1;
    }
    return 0;
}
template <class T>
inline bool chmin(T &a, T b)
{
    if (a > b)
    {
        a = b;
        return 1;
    }
    return 0;
}

constexpr int inf = (int)1e9 + 7;
constexpr long long INF = 1LL << 60;

void solve()
{
    int n, m;
    cin >> n >> m;
    std::vector<ll> X(m);
    for (int i = 0; i < m; i++)
    {
        cin >> X[i];
        X[i] *= 10000;
    }
    std::vector C(n, std::vector<ll>(m));
    std::vector<ll> 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 _ = 0; _ < 2; _++)
    {
        std::set<std::vector<ll>> s;
        std::vector<ll> v(m);
        for (int i = 0; i < n; i++)
        {
            bool ok = true;
            if (T[i] != 100)
            {
                for (int j = 0; j < m; j++)
                {
                    v[j] = X[j] - T[i] * 100 * C[i][j];
                    if (v[j] % (100 - T[i]) != 0)
                    {
                        ok = false;
                        break;
                    }
                    v[j] /= 100 - T[i];
                }
                if (ok and s.count(v))
                {
                    cout << "Yes"
                         << "\n";
                    return;
                }
            }
            else
            {
                bool ok = true;
                for (int j = 0; j < m; j++)
                {
                    if (C[i][j] * 10000 != X[j])
                    {
                        ok = false;
                        break;
                    }
                }
                if (ok)
                {
                    cout << "Yes"
                         << "\n";
                    return;
                }
            }

            for (int j = 0; j < m; j++)
            {
                v[j] = T[i] * C[i][j];
            }
            s.emplace(v);
        }
        std::reverse(T.begin(), T.end());
        std::reverse(C.begin(), C.end());
    }
    cout << "No"
         << "\n";
}

int main()
{
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    int kkt = 1;
    // cin >> kkt;
    while (kkt--)
    {
        solve();
    }
}
0