結果

問題 No.2684 折々の色
ユーザー 👑 NachiaNachia
提出日時 2024-03-20 21:21:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 644 ms / 2,000 ms
コード長 1,912 bytes
コンパイル時間 1,834 ms
コンパイル使用メモリ 115,932 KB
実行使用メモリ 62,592 KB
最終ジャッジ日時 2024-09-30 07:07:17
合計ジャッジ時間 18,297 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 250 ms
31,104 KB
testcase_12 AC 147 ms
22,784 KB
testcase_13 AC 232 ms
36,480 KB
testcase_14 AC 101 ms
19,840 KB
testcase_15 AC 189 ms
26,468 KB
testcase_16 AC 34 ms
9,088 KB
testcase_17 AC 133 ms
20,736 KB
testcase_18 AC 260 ms
35,328 KB
testcase_19 AC 252 ms
37,248 KB
testcase_20 AC 142 ms
27,136 KB
testcase_21 AC 74 ms
11,904 KB
testcase_22 AC 359 ms
36,068 KB
testcase_23 AC 215 ms
27,904 KB
testcase_24 AC 107 ms
14,976 KB
testcase_25 AC 161 ms
19,968 KB
testcase_26 AC 301 ms
35,796 KB
testcase_27 AC 194 ms
24,448 KB
testcase_28 AC 214 ms
27,648 KB
testcase_29 AC 492 ms
61,184 KB
testcase_30 AC 463 ms
55,680 KB
testcase_31 AC 342 ms
56,184 KB
testcase_32 AC 499 ms
61,452 KB
testcase_33 AC 411 ms
62,208 KB
testcase_34 AC 482 ms
55,424 KB
testcase_35 AC 472 ms
55,808 KB
testcase_36 AC 385 ms
55,808 KB
testcase_37 AC 398 ms
56,192 KB
testcase_38 AC 593 ms
62,592 KB
testcase_39 AC 594 ms
62,592 KB
testcase_40 AC 580 ms
62,592 KB
testcase_41 AC 584 ms
62,592 KB
testcase_42 AC 549 ms
62,592 KB
testcase_43 AC 570 ms
62,568 KB
testcase_44 AC 595 ms
62,464 KB
testcase_45 AC 644 ms
62,424 KB
testcase_46 AC 591 ms
62,464 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 2 ms
5,248 KB
testcase_49 AC 1 ms
5,248 KB
testcase_50 AC 1 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 1 ms
5,248 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