結果

問題 No.2684 折々の色
ユーザー momoyuumomoyuu
提出日時 2024-10-10 00:13:30
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 697 ms / 2,000 ms
コード長 1,429 bytes
コンパイル時間 1,604 ms
コンパイル使用メモリ 120,712 KB
実行使用メモリ 90,240 KB
最終ジャッジ日時 2024-10-10 00:13:53
合計ジャッジ時間 23,084 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 278 ms
43,136 KB
testcase_12 AC 196 ms
30,592 KB
testcase_13 AC 337 ms
48,768 KB
testcase_14 AC 144 ms
25,984 KB
testcase_15 AC 223 ms
35,840 KB
testcase_16 AC 46 ms
11,264 KB
testcase_17 AC 165 ms
27,392 KB
testcase_18 AC 338 ms
46,208 KB
testcase_19 AC 334 ms
50,688 KB
testcase_20 AC 192 ms
36,864 KB
testcase_21 AC 82 ms
15,488 KB
testcase_22 AC 372 ms
49,088 KB
testcase_23 AC 227 ms
39,168 KB
testcase_24 AC 139 ms
19,584 KB
testcase_25 AC 167 ms
27,264 KB
testcase_26 AC 318 ms
50,696 KB
testcase_27 AC 200 ms
33,664 KB
testcase_28 AC 238 ms
38,784 KB
testcase_29 AC 649 ms
86,488 KB
testcase_30 AC 579 ms
77,568 KB
testcase_31 AC 531 ms
76,944 KB
testcase_32 AC 562 ms
88,192 KB
testcase_33 AC 577 ms
86,728 KB
testcase_34 AC 533 ms
78,260 KB
testcase_35 AC 564 ms
78,720 KB
testcase_36 AC 501 ms
76,420 KB
testcase_37 AC 522 ms
77,668 KB
testcase_38 AC 679 ms
90,108 KB
testcase_39 AC 649 ms
90,240 KB
testcase_40 AC 599 ms
90,152 KB
testcase_41 AC 697 ms
90,180 KB
testcase_42 AC 579 ms
90,108 KB
testcase_43 AC 626 ms
90,112 KB
testcase_44 AC 621 ms
90,240 KB
testcase_45 AC 647 ms
90,112 KB
testcase_46 AC 628 ms
90,228 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<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

#include<map>
int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int n,m;
    cin>>n>>m;
    vector<ll> x(m);
    for(int i = 0;i<m;i++) cin>>x[i];
    vector<vector<ll>> c(n,vector<ll>(m));
    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];
    }
    map<vector<ll>,int> memo;
    vector<vector<ll>> w(n);
    for(int i = 0;i<n;i++){
        vector<ll> use(m);
        for(int j = 0;j<m;j++) use[j] = c[i][j] * t[i];
        memo[use]++;
        w[i] = use;
    }
    for(int i = 0;i<n;i++){
        vector<ll> want(m);
        if(t[i]==100){
            if(x==c[i]){
                cout<<"Yes\n";
                return 0;
            }
            continue;
        }
        bool fn = true;
        for(int j = 0;j<m;j++){
            want[j] = 10000 * x[j] - 100 * t[i] * c[i][j];
            ll now = 100 - t[i];
            if(now!=0){
                if(want[j]%now!=0) fn = false;
                else want[j] /= now;
            }
        }
        if(!fn) continue;
        bool ok = false;
        if(w[i]==want){
            if(memo[want]>=2) ok = 1;
        }else{
            if(memo[want]>=1) ok = 1;
        }
        if(ok) {
            cout<<"Yes\n";
            return 0;
        }
    }
    cout<<"No\n";
    return 0;
}

0