結果

問題 No.2684 折々の色
ユーザー 👑 NachiaNachia
提出日時 2024-03-20 21:21:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 871 ms / 2,000 ms
コード長 1,912 bytes
コンパイル時間 2,419 ms
コンパイル使用メモリ 118,044 KB
実行使用メモリ 62,692 KB
最終ジャッジ日時 2024-03-20 21:22:01
合計ジャッジ時間 23,971 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 2 ms
6,676 KB
testcase_02 AC 2 ms
6,676 KB
testcase_03 AC 2 ms
6,676 KB
testcase_04 AC 2 ms
6,676 KB
testcase_05 AC 2 ms
6,676 KB
testcase_06 AC 3 ms
6,676 KB
testcase_07 AC 2 ms
6,676 KB
testcase_08 AC 3 ms
6,676 KB
testcase_09 AC 2 ms
6,676 KB
testcase_10 AC 2 ms
6,676 KB
testcase_11 AC 330 ms
31,232 KB
testcase_12 AC 193 ms
22,912 KB
testcase_13 AC 325 ms
36,656 KB
testcase_14 AC 158 ms
19,968 KB
testcase_15 AC 252 ms
26,624 KB
testcase_16 AC 45 ms
9,216 KB
testcase_17 AC 167 ms
20,864 KB
testcase_18 AC 345 ms
35,272 KB
testcase_19 AC 324 ms
37,376 KB
testcase_20 AC 176 ms
27,264 KB
testcase_21 AC 95 ms
12,032 KB
testcase_22 AC 533 ms
36,204 KB
testcase_23 AC 277 ms
28,032 KB
testcase_24 AC 137 ms
15,104 KB
testcase_25 AC 227 ms
20,096 KB
testcase_26 AC 433 ms
35,968 KB
testcase_27 AC 297 ms
24,448 KB
testcase_28 AC 293 ms
27,776 KB
testcase_29 AC 591 ms
61,384 KB
testcase_30 AC 567 ms
55,836 KB
testcase_31 AC 459 ms
56,316 KB
testcase_32 AC 673 ms
61,652 KB
testcase_33 AC 550 ms
62,256 KB
testcase_34 AC 572 ms
55,672 KB
testcase_35 AC 607 ms
56,084 KB
testcase_36 AC 490 ms
55,836 KB
testcase_37 AC 553 ms
56,300 KB
testcase_38 AC 838 ms
62,692 KB
testcase_39 AC 813 ms
62,692 KB
testcase_40 AC 782 ms
62,692 KB
testcase_41 AC 801 ms
62,692 KB
testcase_42 AC 813 ms
62,692 KB
testcase_43 AC 817 ms
62,692 KB
testcase_44 AC 847 ms
62,692 KB
testcase_45 AC 784 ms
62,692 KB
testcase_46 AC 871 ms
62,692 KB
testcase_47 AC 2 ms
6,676 KB
testcase_48 AC 2 ms
6,676 KB
testcase_49 AC 2 ms
6,676 KB
testcase_50 AC 2 ms
6,676 KB
testcase_51 AC 2 ms
6,676 KB
testcase_52 AC 2 ms
6,676 KB
testcase_53 AC 2 ms
6,676 KB
testcase_54 AC 2 ms
6,676 KB
testcase_55 AC 2 ms
6,676 KB
testcase_56 AC 2 ms
6,676 KB
testcase_57 AC 2 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifdef NACHIA
#define _GLIBCXX_DEBUG
#else
#define NDEBUG
#endif
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <queue>
#include <array>
#include <cmath>
#include <atcoder/modint>
using i64 = long long;
using u64 = unsigned long long;
#define rep(i,n) for(i64 i=0; i<(i64)(n); i++)
#define repr(i,n) for(i64 i=(i64)(n)-1; i>=0; i--)
const i64 INF = 1001001001001001001;
const char* yn(bool x){ return x ? "Yes" : "No"; }
template<typename A> void chmin(A& l, const A& r){ if(r < l) l = r; }
template<typename A> void chmax(A& l, const A& r){ if(l < r) l = r; }
template<typename A> using nega_queue = std::priority_queue<A,std::vector<A>,std::greater<A>>;
using Modint = atcoder::static_modint<998244353>;
//#include "nachia/vec.hpp"
#include <map>
using namespace std;

void testcase(){
    i64 N, M; cin >> N >> M;
    vector<vector<i64>> C(N, vector<i64>(M));
    vector<i64> T(N);
    vector<i64> X(M); rep(i,M) cin >> X[i];
    rep(i,M) X[i] *= 100;
    rep(i,N){
        rep(j,M) cin >> C[i][j];
        cin >> T[i];
        rep(j,M) C[i][j] *= T[i];
    }
    map<vector<i64>, int> ds;
    rep(i,N){
        ds[C[i]] += 1;
    }
    rep(i,N) if(T[i] == 100){
        bool ok = (C[i] == X);
        if(ok){ cout << "Yes\n"; return; }
    }
    rep(i,N) if(T[i] != 100){
        ds[C[i]] -= 1;
        vector<i64> Q(M);
        bool ok = true;
        rep(j,M){
            Q[j] = X[j] - C[i][j];
            if(Q[j] % (100 - T[i])) ok = false;
            Q[j] /= (100 - T[i]); Q[j] *= 100;
        }
        auto p = ds.find(Q);
        if(ok && p != ds.end() && p->second != 0){ cout << "Yes\n"; return; }
        ds[C[i]] += 1;
    }
    cout << "No\n";
}

int main(){
    ios::sync_with_stdio(false); cin.tie(nullptr);
    #ifdef NACHIA
    int T; cin >> T; for(int t=0; t<T; T!=++t?(cout<<'\n'),0:0)
    #endif
    testcase();
    return 0;
}
0