結果

問題 No.2684 折々の色
ユーザー umezoumezo
提出日時 2024-03-21 07:14:31
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,157 bytes
コンパイル時間 3,022 ms
コンパイル使用メモリ 260,172 KB
実行使用メモリ 66,892 KB
最終ジャッジ日時 2024-09-30 10:01:05
合計ジャッジ時間 19,007 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 WA -
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 WA -
testcase_08 AC 2 ms
6,816 KB
testcase_09 WA -
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 224 ms
33,024 KB
testcase_12 AC 143 ms
23,680 KB
testcase_13 AC 267 ms
37,120 KB
testcase_14 AC 113 ms
19,968 KB
testcase_15 AC 176 ms
27,752 KB
testcase_16 AC 34 ms
9,344 KB
testcase_17 AC 127 ms
21,504 KB
testcase_18 AC 270 ms
36,012 KB
testcase_19 AC 291 ms
38,096 KB
testcase_20 AC 174 ms
27,520 KB
testcase_21 AC 58 ms
12,544 KB
testcase_22 AC 314 ms
38,652 KB
testcase_23 AC 187 ms
29,568 KB
testcase_24 AC 88 ms
16,000 KB
testcase_25 AC 140 ms
21,376 KB
testcase_26 AC 275 ms
38,156 KB
testcase_27 AC 156 ms
25,856 KB
testcase_28 AC 185 ms
29,440 KB
testcase_29 AC 476 ms
63,616 KB
testcase_30 AC 430 ms
57,624 KB
testcase_31 AC 411 ms
56,552 KB
testcase_32 AC 464 ms
65,224 KB
testcase_33 AC 455 ms
63,596 KB
testcase_34 AC 414 ms
58,208 KB
testcase_35 AC 435 ms
58,548 KB
testcase_36 AC 413 ms
56,312 KB
testcase_37 AC 452 ms
57,464 KB
testcase_38 AC 489 ms
66,584 KB
testcase_39 AC 512 ms
66,892 KB
testcase_40 AC 496 ms
66,684 KB
testcase_41 AC 545 ms
66,756 KB
testcase_42 AC 490 ms
66,684 KB
testcase_43 AC 485 ms
66,732 KB
testcase_44 AC 487 ms
66,820 KB
testcase_45 AC 482 ms
66,676 KB
testcase_46 AC 485 ms
66,760 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 #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n,m;
  cin>>n>>m;
  vector<ll> X(m);
  rep(i,m) cin>>X[i];
  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];
  }
  
  rep(i,m) X[i]*=100;
  rep(i,n) rep(j,m) C[i][j]*=T[i];
  
  map<vector<ll>,ll> mp;
  rep(i,n) mp[C[i]]++;
  
  rep(i,n){
    if(T[i]==100){
      if(C[i]==X){
        cout<<"Yes"<<endl;
        return 0;
      }
      continue;
    }
    if(C[i]==X){
      if(mp[X]>=2){
        cout<<"Yes"<<endl;
        return 0;
      }
      continue;
    }
    vector<ll> Y(m);
    bool b=true;
    rep(j,m){
      if((100*(X[j]-C[i][j]))%(100-T[i])!=0){
        b=false;
        break;
      }
      Y[j]=(100*(X[j]-C[i][j]))/(100-T[i]);
    }
    if(b){
      if(mp[Y]>=2){
        cout<<"Yes"<<endl;
        return 0;
      }
      if(mp[Y]==1 && Y!=C[i]){
        cout<<"Yes"<<endl;
        return 0;
      }
    }
  }
  cout<<"No"<<endl;
    
  return 0;
}
0