結果

問題 No.2684 折々の色
ユーザー otoshigootoshigo
提出日時 2024-03-20 23:17:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 637 ms / 2,000 ms
コード長 1,499 bytes
コンパイル時間 961 ms
コンパイル使用メモリ 90,900 KB
実行使用メモリ 58,752 KB
最終ジャッジ日時 2024-09-30 09:24:16
合計ジャッジ時間 17,896 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 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 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 253 ms
28,672 KB
testcase_12 AC 147 ms
20,864 KB
testcase_13 AC 264 ms
33,280 KB
testcase_14 AC 113 ms
18,432 KB
testcase_15 AC 225 ms
24,192 KB
testcase_16 AC 40 ms
8,448 KB
testcase_17 AC 155 ms
18,944 KB
testcase_18 AC 313 ms
31,488 KB
testcase_19 AC 313 ms
34,432 KB
testcase_20 AC 167 ms
25,472 KB
testcase_21 AC 82 ms
11,008 KB
testcase_22 AC 465 ms
32,384 KB
testcase_23 AC 204 ms
26,112 KB
testcase_24 AC 105 ms
13,696 KB
testcase_25 AC 143 ms
18,432 KB
testcase_26 AC 297 ms
33,408 KB
testcase_27 AC 196 ms
22,528 KB
testcase_28 AC 210 ms
25,856 KB
testcase_29 AC 520 ms
57,420 KB
testcase_30 AC 499 ms
51,796 KB
testcase_31 AC 388 ms
52,352 KB
testcase_32 AC 612 ms
57,708 KB
testcase_33 AC 461 ms
58,284 KB
testcase_34 AC 456 ms
51,712 KB
testcase_35 AC 462 ms
51,968 KB
testcase_36 AC 360 ms
51,712 KB
testcase_37 AC 506 ms
52,284 KB
testcase_38 AC 569 ms
58,752 KB
testcase_39 AC 632 ms
58,672 KB
testcase_40 AC 585 ms
58,728 KB
testcase_41 AC 579 ms
58,720 KB
testcase_42 AC 563 ms
58,624 KB
testcase_43 AC 562 ms
58,752 KB
testcase_44 AC 637 ms
58,748 KB
testcase_45 AC 574 ms
58,676 KB
testcase_46 AC 562 ms
58,668 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 1 ms
5,248 KB
testcase_57 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<set>
using namespace std;
using ll=long long;
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N,M;
    cin>>N>>M;
    vector<ll>X(M);
    for(int i=0;i<M;i++)cin>>X[i];
    vector C(N,vector<ll>(M));
    vector<int>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 i=0;i<N;i++){
        if(T[i]==100){
            if(X==C[i]){
                cout<<"Yes\n";
                return 0;
            }
        }
    }
    for(int i=0;i<N;i++){
        for(int j=0;j<M;j++){
            C[i][j]*=T[i];
        }
    }
    multiset<vector<ll>>se;
    for(int i=0;i<N;i++)se.insert(C[i]);
    for(int i=0;i<N;i++){
        if(T[i]==100)continue;
        vector<ll>W(M);
        bool ok=true;
        for(int j=0;j<M;j++){
            if((10000*X[j]-100*C[i][j])%(100-T[i])!=0){
                ok=false;
                break;
            }
            W[j]=(10000*X[j]-100*C[i][j])/(100-T[i]);
        }
        se.erase(se.find(C[i]));
        if(ok&&se.count(W)){
            cout<<"Yes\n";
            return 0;
        }
        se.insert(C[i]);
    }
    cout<<"No\n";
}
0