結果
問題 | No.2684 折々の色 |
ユーザー | SnowBeenDiding |
提出日時 | 2024-03-20 22:52:39 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,388 bytes |
コンパイル時間 | 4,922 ms |
コンパイル使用メモリ | 321,172 KB |
実行使用メモリ | 44,152 KB |
最終ジャッジ日時 | 2024-09-30 09:00:18 |
合計ジャッジ時間 | 23,345 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 3 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | AC | 266 ms
21,936 KB |
testcase_12 | AC | 190 ms
15,232 KB |
testcase_13 | AC | 328 ms
23,808 KB |
testcase_14 | AC | 198 ms
14,464 KB |
testcase_15 | AC | 179 ms
15,872 KB |
testcase_16 | AC | 33 ms
6,016 KB |
testcase_17 | AC | 167 ms
13,952 KB |
testcase_18 | AC | 237 ms
20,624 KB |
testcase_19 | AC | 355 ms
25,984 KB |
testcase_20 | AC | 266 ms
19,712 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 624 ms
42,880 KB |
testcase_30 | AC | 605 ms
40,284 KB |
testcase_31 | AC | 562 ms
40,652 KB |
testcase_32 | AC | 606 ms
43,136 KB |
testcase_33 | AC | 654 ms
43,520 KB |
testcase_34 | AC | 540 ms
40,448 KB |
testcase_35 | AC | 548 ms
40,448 KB |
testcase_36 | AC | 606 ms
40,448 KB |
testcase_37 | AC | 581 ms
40,664 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
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 | 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 | WA | - |
testcase_57 | AC | 1 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> #define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++) using namespace std; using namespace atcoder; typedef long long ll; ll make_hash(vector<ll> &v) { ll ret = 0; for (auto &x : v) { ret = ret * 1000000007 + x; ret %= 1000000007; } return ret; } int main() { int h, w; cin >> h >> w; vector<ll> x(w), t(h); rep(i, 0, w) cin >> x[i]; vector<vector<ll>> c(h, vector<ll>(w)); unordered_map<ll, int> ma; rep(i, 0, h) { rep(j, 0, w) cin >> c[i][j]; cin >> t[i]; c[i].push_back(t[i]); ma[make_hash(c[i])]++; } vector<ll> none = {-1}; vector<ll> ret(w); auto f = [&](int ind, ll tt) { ret.clear(); rep(j, 0, w) { ll q = 10000LL * x[j]; q -= (100LL - tt) * t[ind] * c[ind][j]; ll p = tt * 100; if (abs(q) % abs(p) != 0) return -1LL; ret[j] = q / p; } ret.push_back(tt); return make_hash(ret); }; rep(i, 0, h) { ma[make_hash(c[i])]--; rep(j, 1, 101) { ll hash = f(i, j); if (hash == -1) continue; if (ma[hash]) { cout << "Yes" << endl; return 0; } } ma[make_hash(c[i])]++; } cout << "No" << endl; }