結果

問題 No.2684 折々の色
ユーザー tnakao0123tnakao0123
提出日時 2024-04-26 15:52:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 373 ms / 2,000 ms
コード長 1,856 bytes
コンパイル時間 958 ms
コンパイル使用メモリ 65,248 KB
実行使用メモリ 33,672 KB
最終ジャッジ日時 2024-11-14 04:57:17
合計ジャッジ時間 14,262 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
14,852 KB
testcase_01 AC 6 ms
14,848 KB
testcase_02 AC 7 ms
14,852 KB
testcase_03 AC 5 ms
14,848 KB
testcase_04 AC 6 ms
14,848 KB
testcase_05 AC 7 ms
14,852 KB
testcase_06 AC 6 ms
14,852 KB
testcase_07 AC 6 ms
14,984 KB
testcase_08 AC 6 ms
14,856 KB
testcase_09 AC 6 ms
14,848 KB
testcase_10 AC 7 ms
14,852 KB
testcase_11 AC 164 ms
25,860 KB
testcase_12 AC 104 ms
20,872 KB
testcase_13 AC 184 ms
25,092 KB
testcase_14 AC 94 ms
21,380 KB
testcase_15 AC 111 ms
21,892 KB
testcase_16 AC 27 ms
16,900 KB
testcase_17 AC 91 ms
20,104 KB
testcase_18 AC 169 ms
26,372 KB
testcase_19 AC 199 ms
28,416 KB
testcase_20 AC 132 ms
22,404 KB
testcase_21 AC 41 ms
17,920 KB
testcase_22 AC 183 ms
26,756 KB
testcase_23 AC 138 ms
23,556 KB
testcase_24 AC 62 ms
19,072 KB
testcase_25 AC 92 ms
19,972 KB
testcase_26 AC 190 ms
26,372 KB
testcase_27 AC 109 ms
20,356 KB
testcase_28 AC 138 ms
23,304 KB
testcase_29 AC 350 ms
33,408 KB
testcase_30 AC 321 ms
33,284 KB
testcase_31 AC 338 ms
33,540 KB
testcase_32 AC 353 ms
33,288 KB
testcase_33 AC 356 ms
33,408 KB
testcase_34 AC 333 ms
33,288 KB
testcase_35 AC 332 ms
33,412 KB
testcase_36 AC 331 ms
33,284 KB
testcase_37 AC 336 ms
33,540 KB
testcase_38 AC 372 ms
33,536 KB
testcase_39 AC 371 ms
33,544 KB
testcase_40 AC 373 ms
33,536 KB
testcase_41 AC 367 ms
33,540 KB
testcase_42 AC 365 ms
33,672 KB
testcase_43 AC 371 ms
33,540 KB
testcase_44 AC 372 ms
33,540 KB
testcase_45 AC 372 ms
33,672 KB
testcase_46 AC 371 ms
33,540 KB
testcase_47 AC 6 ms
14,848 KB
testcase_48 AC 6 ms
14,852 KB
testcase_49 AC 6 ms
14,852 KB
testcase_50 AC 5 ms
14,848 KB
testcase_51 AC 6 ms
14,852 KB
testcase_52 AC 5 ms
14,856 KB
testcase_53 AC 5 ms
14,852 KB
testcase_54 AC 5 ms
14,848 KB
testcase_55 AC 5 ms
14,852 KB
testcase_56 AC 5 ms
14,724 KB
testcase_57 AC 6 ms
14,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2684.cc:  No.2684 折々の色 - yukicoder
 */

#include<cstdio>
#include<vector>
#include<algorithm>
#include<utility>
 
using namespace std;

/* constant */

const int MAX_N = 200000;
const int MAX_M = 10;

/* typedef */

typedef vector<int> vi;
typedef pair<vi,int> pvii;

/* global variables */

vi cvs[MAX_N];
int ts[MAX_N];
pvii ps[MAX_N];

/* subroutines */

void readv(int m, vi &v) {
  v.resize(m);
  for (int i = 0; i < m; i++) scanf("%d", &v[i]);
}

void subv(vi &a, vi &b) {
  for (int i = 0; i < a.size(); i++) a[i] -= b[i];
}

void mulv(vi &a, int b) { for (auto &u: a) u *= b; }

bool divv(vi &a, int b) {
  for (auto &u: a) {
    if (u % b != 0) return false;
    u /= b;
  }
  return true;
}

void printv(vi &a) { for (auto &u: a) printf(" %d", u); putchar('\n'); }

/* main */

int main() {
  int n, m;
  scanf("%d%d", &n, &m);

  // ti/100*cik+(1-ti/100)*tj/100*cjk = xk
  // -> ti*cik+(1-ti/100)*tj*cjk = 100*xk
  // let ti*cik=>tcik,
  // -> tcik+(1-ti/100)tcjk = 100*xk
  // -> (1-ti/100)tcjk=100*xk-tcik
  // -> tcjk = (100*xk-tcik)*100/(100-ti)

  vi xv;
  readv(m, xv);
  mulv(xv, 100);

  for (int i = 0; i < n; i++) {
    readv(m, cvs[i]);
    scanf("%d", ts + i);
    mulv(cvs[i], ts[i]);
    if (ts[i] == 100 && cvs[i] == xv) { puts("Yes"); return 0; }
    ps[i] = {cvs[i], ts[i]};
  }
  sort(ps, ps + n);

  for (int i = 0; i < n; i++) {
    cvs[i] = ps[i].first, ts[i] = ps[i].second;
    //printv(cvs[i]);
  }
  
  for (int i = 0; i < n; i++) {
    if (ts[i] == 100) continue;

    vi fv(xv.begin(), xv.end());
    subv(fv, cvs[i]);
    mulv(fv, 100);
    if (divv(fv, 100 - ts[i])) {
      //printf(" i=%d:", i); printv(fv);
      int k = lower_bound(cvs, cvs + n, fv) - cvs;
      if (k < n && i != k && fv == cvs[k]) {
	puts("Yes"); return 0;
      }
    }
  }

  puts("No");
  return 0;
}
0