結果

問題 No.2684 折々の色
ユーザー GOTKAKOGOTKAKO
提出日時 2024-03-20 23:02:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 753 ms / 2,000 ms
コード長 1,251 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 213,876 KB
実行使用メモリ 39,936 KB
最終ジャッジ日時 2024-09-30 09:09:50
合計ジャッジ時間 20,012 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 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 1 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 260 ms
25,088 KB
testcase_12 AC 160 ms
17,920 KB
testcase_13 AC 239 ms
28,160 KB
testcase_14 AC 100 ms
16,256 KB
testcase_15 AC 202 ms
20,736 KB
testcase_16 AC 40 ms
8,448 KB
testcase_17 AC 136 ms
16,384 KB
testcase_18 AC 282 ms
31,360 KB
testcase_19 AC 263 ms
29,952 KB
testcase_20 AC 137 ms
18,048 KB
testcase_21 AC 75 ms
11,008 KB
testcase_22 AC 426 ms
32,340 KB
testcase_23 AC 208 ms
20,352 KB
testcase_24 AC 106 ms
13,696 KB
testcase_25 AC 152 ms
15,744 KB
testcase_26 AC 292 ms
25,728 KB
testcase_27 AC 173 ms
16,768 KB
testcase_28 AC 201 ms
19,968 KB
testcase_29 AC 490 ms
39,072 KB
testcase_30 AC 579 ms
39,424 KB
testcase_31 AC 388 ms
39,860 KB
testcase_32 AC 568 ms
39,276 KB
testcase_33 AC 453 ms
39,680 KB
testcase_34 AC 513 ms
39,352 KB
testcase_35 AC 520 ms
39,592 KB
testcase_36 AC 514 ms
39,552 KB
testcase_37 AC 536 ms
39,748 KB
testcase_38 AC 753 ms
39,936 KB
testcase_39 AC 631 ms
39,936 KB
testcase_40 AC 600 ms
39,808 KB
testcase_41 AC 629 ms
39,936 KB
testcase_42 AC 620 ms
39,936 KB
testcase_43 AC 608 ms
39,916 KB
testcase_44 AC 628 ms
39,808 KB
testcase_45 AC 606 ms
39,808 KB
testcase_46 AC 613 ms
39,936 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 1 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 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N,M; cin >> N >> M;
    vector<int> X(M),T(N);
    vector<vector<int>> C(N);
    for(auto &x : X) cin >> x,x *= 10000;


    multiset<vector<int>> S;
    for(int i=0; i<N; i++){
        vector<int> now(M);
        for(auto &n : now) cin >> n;
        int t; cin >> t;
        for(auto &n : now) n *= t;
        S.insert(now);
        C.at(i) = now; T.at(i) = t;
    }

    bool yes = false;
    for(int i=0; i<N; i++){
        vector<int> goal = X;
        bool ok = true;
        int t = T.at(i);
        if(t == 100){
            for(int k=0; k<M; k++) goal.at(k) /= 100;
            if(goal == C.at(i)){yes = true; break;}
            continue;
        }
        t = 100-t;
        for(int k=0; k<M; k++){
            goal.at(k) -= 100*C.at(i).at(k);
            if(goal.at(k) >= 0){
                if(goal.at(k)%(t)){ok = false; break;}
                goal.at(k) /= t;
            }
            else{ok = false; break;}
        }
        S.erase(S.find(C.at(i)));
        if(S.count(goal) && ok){yes = true; break;}
        S.insert(C.at(i));
    }
    if(yes) cout << "Yes" << endl;
    else cout << "No" << endl;
}
0