結果

問題 No.2684 折々の色
ユーザー GOTKAKOGOTKAKO
提出日時 2024-03-20 22:55:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,141 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 214,308 KB
実行使用メモリ 39,936 KB
最終ジャッジ日時 2024-09-30 09:02:51
合計ジャッジ時間 15,574 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 183 ms
25,068 KB
testcase_12 AC 120 ms
17,920 KB
testcase_13 AC 225 ms
28,160 KB
testcase_14 AC 101 ms
16,128 KB
testcase_15 AC 140 ms
20,736 KB
testcase_16 AC 32 ms
8,448 KB
testcase_17 AC 106 ms
16,384 KB
testcase_18 AC 216 ms
31,488 KB
testcase_19 AC 232 ms
29,952 KB
testcase_20 AC 136 ms
17,920 KB
testcase_21 AC 49 ms
10,880 KB
testcase_22 AC 247 ms
32,292 KB
testcase_23 AC 147 ms
20,224 KB
testcase_24 AC 75 ms
13,696 KB
testcase_25 AC 108 ms
15,872 KB
testcase_26 AC 216 ms
25,728 KB
testcase_27 AC 131 ms
16,896 KB
testcase_28 AC 151 ms
19,968 KB
testcase_29 AC 396 ms
39,112 KB
testcase_30 AC 394 ms
39,424 KB
testcase_31 AC 369 ms
39,816 KB
testcase_32 AC 416 ms
39,168 KB
testcase_33 AC 396 ms
39,640 KB
testcase_34 AC 376 ms
39,364 KB
testcase_35 AC 381 ms
39,712 KB
testcase_36 AC 359 ms
39,364 KB
testcase_37 AC 360 ms
39,820 KB
testcase_38 AC 414 ms
39,800 KB
testcase_39 AC 395 ms
39,808 KB
testcase_40 AC 418 ms
39,936 KB
testcase_41 AC 405 ms
39,936 KB
testcase_42 AC 396 ms
39,936 KB
testcase_43 AC 403 ms
39,796 KB
testcase_44 AC 403 ms
39,936 KB
testcase_45 AC 390 ms
39,920 KB
testcase_46 AC 405 ms
39,936 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 1 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 WA -
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;


    set<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);
        for(int k=0; k<M; k++){
            goal.at(k) -= 100*C.at(i).at(k);
            if(t == 100){if(goal.at(k) != 0){ok = false; break;}}
            else if(goal.at(k) >= 0){
                if(goal.at(k)%(100-t)){ok = false; break;}
                goal.at(k) /= 100-t;
            }
            else{ok = false; break;}
        } 
        if(t == 100){if(ok){yes = true; break;}}
        else if(S.count(goal) && ok){yes = true; break;}
    }
    if(yes) cout << "Yes" << endl;
    else cout << "No" << endl;

}
0