結果

問題 No.2684 折々の色
ユーザー nononnonon
提出日時 2024-03-20 23:24:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 838 ms / 2,000 ms
コード長 1,287 bytes
コンパイル時間 2,338 ms
コンパイル使用メモリ 210,140 KB
実行使用メモリ 45,440 KB
最終ジャッジ日時 2024-09-30 09:28:15
合計ジャッジ時間 26,765 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 2 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 403 ms
28,288 KB
testcase_12 AC 300 ms
23,552 KB
testcase_13 AC 558 ms
37,760 KB
testcase_14 AC 244 ms
18,176 KB
testcase_15 AC 361 ms
27,520 KB
testcase_16 AC 94 ms
10,496 KB
testcase_17 AC 270 ms
21,376 KB
testcase_18 AC 598 ms
42,496 KB
testcase_19 AC 525 ms
33,792 KB
testcase_20 AC 291 ms
20,352 KB
testcase_21 AC 148 ms
14,080 KB
testcase_22 AC 629 ms
43,392 KB
testcase_23 AC 323 ms
22,912 KB
testcase_24 AC 217 ms
17,792 KB
testcase_25 AC 273 ms
20,736 KB
testcase_26 AC 454 ms
29,184 KB
testcase_27 AC 306 ms
22,272 KB
testcase_28 AC 333 ms
22,656 KB
testcase_29 AC 734 ms
44,288 KB
testcase_30 AC 729 ms
44,928 KB
testcase_31 AC 740 ms
45,312 KB
testcase_32 AC 773 ms
44,544 KB
testcase_33 AC 774 ms
45,056 KB
testcase_34 AC 759 ms
44,672 KB
testcase_35 AC 772 ms
45,056 KB
testcase_36 AC 755 ms
44,928 KB
testcase_37 AC 789 ms
45,312 KB
testcase_38 AC 830 ms
45,440 KB
testcase_39 AC 824 ms
45,312 KB
testcase_40 AC 832 ms
45,312 KB
testcase_41 AC 828 ms
45,312 KB
testcase_42 AC 811 ms
45,312 KB
testcase_43 AC 833 ms
45,312 KB
testcase_44 AC 838 ms
45,312 KB
testcase_45 AC 831 ms
45,312 KB
testcase_46 AC 832 ms
45,440 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 2 ms
5,248 KB
testcase_49 AC 3 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 3 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 #

#include<bits/stdc++.h>
#include<atcoder/math>
using namespace std;
int N,M;
long T[2<<17];
array<long,10>X,C[2<<17];
multiset<array<long,10>>S;
bool fn[2<<17];
const long mod=998244259;
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cin>>N>>M;
    for(int i=0;i<M;i++)cin>>X[i];
    for(int i=0;i<N;i++)
    {
        for(int j=0;j<M;j++)cin>>C[i][j];
        cin>>T[i];
        if(T[i]==100)
        {
            if([&]
            {
                for(int j=0;j<M;j++)if(100*X[j]!=T[i]*C[i][j])return 0;
                return 1;
            }())
            {
                cout<<"Yes\n";
                return 0;
            }
            continue;
        }
        array<long,10>ar;
        for(int j=0;j<10;j++)
        {
            ar[j]=(10000*X[j]-100*T[i]*C[i][j])%mod;
            ar[j]*=atcoder::pow_mod(100-T[i],mod-2,mod);
            ar[j]%=mod;
        }
        S.insert(ar);
        array<long,10>ar2;
        for(int j=0;j<10;j++)ar2[j]=T[i]*C[i][j]%mod;
        if(ar==ar2)fn[i]=1;
    }
    for(int i=0;i<N;i++)if(!fn[i])
    {
        array<long,10>ar;
        for(int j=0;j<10;j++)ar[j]=T[i]*C[i][j]%mod;
        if(S.find(ar)!=S.end())
        {
            cout<<"Yes\n";
            return 0;
        }
    }
    cout<<"No\n";
}
0