結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
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 WA -
testcase_08 AC 3 ms
5,248 KB
testcase_09 WA -
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 228 ms
33,024 KB
testcase_12 AC 137 ms
23,808 KB
testcase_13 AC 268 ms
37,120 KB
testcase_14 AC 111 ms
19,968 KB
testcase_15 AC 170 ms
27,904 KB
testcase_16 AC 34 ms
9,344 KB
testcase_17 AC 127 ms
21,504 KB
testcase_18 AC 275 ms
36,096 KB
testcase_19 AC 287 ms
38,144 KB
testcase_20 AC 168 ms
27,392 KB
testcase_21 AC 58 ms
12,672 KB
testcase_22 AC 300 ms
38,528 KB
testcase_23 AC 196 ms
29,696 KB
testcase_24 AC 85 ms
15,872 KB
testcase_25 AC 135 ms
21,248 KB
testcase_26 AC 256 ms
38,144 KB
testcase_27 AC 161 ms
25,856 KB
testcase_28 AC 190 ms
29,440 KB
testcase_29 AC 461 ms
63,616 KB
testcase_30 AC 428 ms
57,600 KB
testcase_31 AC 420 ms
56,704 KB
testcase_32 AC 468 ms
65,280 KB
testcase_33 AC 461 ms
63,616 KB
testcase_34 AC 453 ms
58,240 KB
testcase_35 AC 457 ms
58,624 KB
testcase_36 AC 442 ms
56,320 KB
testcase_37 AC 440 ms
57,472 KB
testcase_38 AC 492 ms
66,688 KB
testcase_39 AC 497 ms
66,688 KB
testcase_40 AC 491 ms
66,688 KB
testcase_41 AC 488 ms
66,816 KB
testcase_42 AC 483 ms
66,688 KB
testcase_43 AC 486 ms
66,688 KB
testcase_44 AC 475 ms
66,688 KB
testcase_45 AC 491 ms
66,688 KB
testcase_46 AC 479 ms
66,816 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 WA -
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]>=1){
        cout<<"Yes"<<endl;
        return 0;
      }
    }
  }
  cout<<"No"<<endl;
    
  return 0;
}
0