結果

問題 No.2684 折々の色
ユーザー maeshunmaeshun
提出日時 2024-03-20 22:24:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 962 ms / 2,000 ms
コード長 1,813 bytes
コンパイル時間 4,559 ms
コンパイル使用メモリ 272,352 KB
実行使用メモリ 66,816 KB
最終ジャッジ日時 2024-09-30 08:22:02
合計ジャッジ時間 29,493 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 394 ms
33,152 KB
testcase_12 AC 245 ms
23,936 KB
testcase_13 AC 452 ms
37,120 KB
testcase_14 AC 208 ms
20,096 KB
testcase_15 AC 281 ms
27,776 KB
testcase_16 AC 48 ms
9,344 KB
testcase_17 AC 216 ms
21,632 KB
testcase_18 AC 386 ms
36,096 KB
testcase_19 AC 502 ms
38,164 KB
testcase_20 AC 320 ms
27,520 KB
testcase_21 AC 78 ms
12,672 KB
testcase_22 AC 468 ms
38,752 KB
testcase_23 AC 325 ms
29,824 KB
testcase_24 AC 124 ms
16,000 KB
testcase_25 AC 256 ms
21,248 KB
testcase_26 AC 506 ms
38,144 KB
testcase_27 AC 308 ms
25,728 KB
testcase_28 AC 348 ms
29,568 KB
testcase_29 AC 886 ms
63,744 KB
testcase_30 AC 843 ms
57,600 KB
testcase_31 AC 860 ms
56,736 KB
testcase_32 AC 914 ms
65,408 KB
testcase_33 AC 874 ms
63,616 KB
testcase_34 AC 854 ms
58,368 KB
testcase_35 AC 908 ms
58,716 KB
testcase_36 AC 782 ms
56,316 KB
testcase_37 AC 803 ms
57,448 KB
testcase_38 AC 938 ms
66,816 KB
testcase_39 AC 962 ms
66,816 KB
testcase_40 AC 943 ms
66,688 KB
testcase_41 AC 925 ms
66,688 KB
testcase_42 AC 921 ms
66,788 KB
testcase_43 AC 930 ms
66,760 KB
testcase_44 AC 926 ms
66,688 KB
testcase_45 AC 945 ms
66,816 KB
testcase_46 AC 957 ms
66,812 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 1 ms
5,248 KB
testcase_51 AC 1 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 1 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>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for(int i=0;i<(n);++i)
#define rep1(i, n) for(int i=1;i<=(n);i++)
#define ll long long
using mint = modint998244353;
using P = pair<ll,ll>;
using lb = long double;
using T = tuple<ll, ll, ll>;
#ifdef LOCAL
#  include <debug_print.hpp>
#  define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define dbg(...) (static_cast<void>(0))
#endif

int main()
{
    int n, m;
    cin >> n >> m;
    vector<ll> x(m);
    rep(i,m) cin >> x[i];
    map<vector<ll>, ll> st;
    vector<vector<ll>> c(n, vector<ll>(m));
    vector<ll> t(n);
    rep(i,n){
        rep(j,m) cin >> c[i][j];
        cin >> t[i];
        vector<ll> tmp;
        rep(j,m) {
            tmp.push_back(c[i][j]*t[i]);
        }
        st[tmp]++;
    }
    rep(i,n){
        if(t[i]==100) {
            bool ok = true;
            rep(j,m) {
                if(100*x[j]!=t[i]*c[i][j]) ok = false;
            } 
            if(ok) {
                cout<<"Yes"<<endl;
                return 0;
            }
            continue;
        }
        vector<ll> tmp;
        bool ok = true;
        rep(j,m) {
            ll v = 100*100*x[j]-100*t[i]*c[i][j];
            if(v%(100-t[i])) {
                ok = false;
                break;
            }
            tmp.push_back(v/(100-t[i]));
        }
        vector<ll> ts;
        rep(j,m) {
            ts.push_back(c[i][j]*t[i]);
        }
        dbg(ts,tmp);
        if(ok){
            if(tmp==ts && st[tmp]>=2){
                cout<<"Yes"<<endl;
                return 0;
            }
            else if(tmp!=ts && st[tmp]>=1){
                cout<<"Yes"<<endl;
                return 0;
            }
        }
    }
    cout<<"No"<<endl;
    return 0;
}
0