結果

問題 No.2684 折々の色
ユーザー zawakasuzawakasu
提出日時 2024-03-20 22:03:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 596 ms / 2,000 ms
コード長 1,866 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 214,644 KB
実行使用メモリ 41,984 KB
最終ジャッジ日時 2024-09-30 07:55:12
合計ジャッジ時間 20,848 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 287 ms
26,368 KB
testcase_12 AC 201 ms
20,224 KB
testcase_13 AC 373 ms
32,256 KB
testcase_14 AC 150 ms
17,024 KB
testcase_15 AC 234 ms
23,552 KB
testcase_16 AC 42 ms
9,472 KB
testcase_17 AC 165 ms
18,432 KB
testcase_18 AC 387 ms
35,968 KB
testcase_19 AC 361 ms
31,488 KB
testcase_20 AC 197 ms
18,816 KB
testcase_21 AC 73 ms
12,544 KB
testcase_22 AC 410 ms
36,992 KB
testcase_23 AC 208 ms
21,248 KB
testcase_24 AC 112 ms
15,360 KB
testcase_25 AC 158 ms
17,792 KB
testcase_26 AC 306 ms
27,008 KB
testcase_27 AC 179 ms
19,200 KB
testcase_28 AC 219 ms
21,248 KB
testcase_29 AC 559 ms
40,960 KB
testcase_30 AC 560 ms
41,472 KB
testcase_31 AC 565 ms
41,984 KB
testcase_32 AC 572 ms
41,344 KB
testcase_33 AC 585 ms
41,728 KB
testcase_34 AC 556 ms
41,216 KB
testcase_35 AC 563 ms
41,600 KB
testcase_36 AC 546 ms
41,344 KB
testcase_37 AC 555 ms
41,856 KB
testcase_38 AC 581 ms
41,984 KB
testcase_39 AC 578 ms
41,984 KB
testcase_40 AC 593 ms
41,984 KB
testcase_41 AC 579 ms
41,856 KB
testcase_42 AC 587 ms
41,984 KB
testcase_43 AC 592 ms
41,856 KB
testcase_44 AC 580 ms
41,984 KB
testcase_45 AC 596 ms
41,984 KB
testcase_46 AC 586 ms
41,984 KB
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 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>




namespace zawa {

using i16 = std::int16_t;
using i32 = std::int32_t;
using i64 = std::int64_t;
using i128 = __int128_t;

using u8 = std::uint8_t;
using u16 = std::uint16_t;
using u32 = std::uint32_t;
using u64 = std::uint64_t;

using usize = std::size_t;

} // namespace zawa


namespace zawa {

void SetFastIO() {
    std::cin.tie(nullptr)->sync_with_stdio(false);
}

void SetPrecision(u32 dig) {
    std::cout << std::fixed << std::setprecision(dig);
}

} // namespace zawa
using namespace zawa;

int main() {
    SetFastIO();

    int n, m; std::cin >> n >> m;
    std::vector<int> x(m);
    for (auto& v : x) std::cin >> v;

    std::map<std::vector<int>, std::vector<int>> map;
    bool ans{};
    for (int i{} ; i < n ; i++) {
        std::vector<int> c(m);
        for (auto& v : c) std::cin >> v;
        long long t; std::cin >> t;
        std::vector<int> left(m), right(m);
        if (t < 100) {
            bool can{true};
            for (int k{} ; k < m ; k++) {
                can &= ((10000 * x[k] - 100 * t * c[k]) % (100 - t)) == 0;
                left[k] = (10000 * x[k] - 100 * t * c[k]) / (100 - t);
            }
            if (can) map[left].push_back(i + 1);
        }
        else {
            ans |= x == c;
        }
        for (int k{} ; k < m ; k++) {
            right[k] = t * c[k];
        }
        map[right].push_back(-i - 1);
    }

    for (const auto& [_, index] : map) {
        std::vector<int> pos, neg;
        for (auto x : index) {
            if (x > 0) pos.push_back(x);
            else if (x < 0) neg.push_back(x);
            else assert(false);
        }
        if (neg.empty()) continue;
        for (auto v : pos) {
            ans |= neg[0] * -1 != v;
            ans |= (neg.size() > 1u and neg[1] * -1 != v);
        }
    }
    std::cout << (ans ? "Yes" : "No") << '\n';
}
0