結果

問題 No.2684 折々の色
ユーザー SSRSSSRS
提出日時 2024-03-20 21:26:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 649 ms / 2,000 ms
コード長 1,397 bytes
コンパイル時間 2,467 ms
コンパイル使用メモリ 216,968 KB
実行使用メモリ 33,664 KB
最終ジャッジ日時 2024-09-30 07:14:14
合計ジャッジ時間 20,454 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 293 ms
21,376 KB
testcase_12 AC 177 ms
14,848 KB
testcase_13 AC 293 ms
23,060 KB
testcase_14 AC 170 ms
13,952 KB
testcase_15 AC 180 ms
17,024 KB
testcase_16 AC 37 ms
7,296 KB
testcase_17 AC 152 ms
13,696 KB
testcase_18 AC 239 ms
25,684 KB
testcase_19 AC 337 ms
25,344 KB
testcase_20 AC 252 ms
15,488 KB
testcase_21 AC 55 ms
9,472 KB
testcase_22 AC 250 ms
26,392 KB
testcase_23 AC 234 ms
17,392 KB
testcase_24 AC 88 ms
11,520 KB
testcase_25 AC 147 ms
13,184 KB
testcase_26 AC 313 ms
21,888 KB
testcase_27 AC 180 ms
14,096 KB
testcase_28 AC 235 ms
17,280 KB
testcase_29 AC 604 ms
33,024 KB
testcase_30 AC 561 ms
33,248 KB
testcase_31 AC 573 ms
33,596 KB
testcase_32 AC 649 ms
33,132 KB
testcase_33 AC 625 ms
33,408 KB
testcase_34 AC 566 ms
33,280 KB
testcase_35 AC 565 ms
33,536 KB
testcase_36 AC 577 ms
33,408 KB
testcase_37 AC 578 ms
33,592 KB
testcase_38 AC 611 ms
33,660 KB
testcase_39 AC 636 ms
33,664 KB
testcase_40 AC 634 ms
33,664 KB
testcase_41 AC 629 ms
33,664 KB
testcase_42 AC 633 ms
33,632 KB
testcase_43 AC 629 ms
33,664 KB
testcase_44 AC 620 ms
33,664 KB
testcase_45 AC 623 ms
33,664 KB
testcase_46 AC 635 ms
33,664 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 1 ms
5,248 KB
testcase_55 AC 1 ms
5,248 KB
testcase_56 AC 1 ms
5,248 KB
testcase_57 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, M;
  cin >> N >> M;
  vector<int> X(M);
  for (int i = 0; i < M; i++){
    cin >> X[i];
  }
  vector<vector<int>> C(N, vector<int>(M));
  vector<int> T(N);
  for (int i = 0; i < N; i++){
    for (int j = 0; j < M; j++){
      cin >> C[i][j];
    }
    cin >> T[i];
  }
  vector<pair<vector<int>, int>> P(N);
  for (int i = 0; i < N; i++){
    P[i].first.resize(M);
    for (int j = 0; j < M; j++){
      P[i].first[j] = T[i] * C[i][j];
    }
    P[i].second = i;
  }
  sort(P.begin(), P.end());
  bool ok = false;
  for (int i = 0; i < N; i++){
    if (T[i] == 100){
      if (X == C[i]){
        ok = true;
      }
    } else {
      vector<int> R(M);
      bool ok2 = true;
      for (int j = 0; j < M; j++){
        R[j] = 10000 * X[j] - 100 * T[i] * C[i][j];
        if (R[j] % (100 - T[i]) != 0){
          ok2 = false;
        }
        R[j] /= 100 - T[i];
      }
      if (ok2){
        int p = lower_bound(P.begin(), P.end(), make_pair(R, -1)) - P.begin();
        if (p < N){
          if (P[p].first == R){
            if (P[p].second != i){
              ok = true;
            } else if (p < N - 1){
              if (P[p + 1].first == R){
                ok = true;
              }
            }
          }
        }
      }
    }
  }
  if (ok){
    cout << "Yes" << endl;
  } else {
    cout << "No" << endl;
  }
}
0