結果

問題 No.2684 折々の色
ユーザー nononnonon
提出日時 2024-03-20 23:10:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 998 bytes
コンパイル時間 2,505 ms
コンパイル使用メモリ 207,236 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-09-30 09:19:21
合計ジャッジ時間 29,459 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 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 2 ms
5,248 KB
testcase_09 WA -
testcase_10 AC 4 ms
5,248 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,303 ms
36,224 KB
testcase_14 AC 458 ms
16,512 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 920 ms
36,480 KB
testcase_19 AC 1,168 ms
30,592 KB
testcase_20 AC 445 ms
17,920 KB
testcase_21 AC 473 ms
14,208 KB
testcase_22 AC 1,362 ms
43,392 KB
testcase_23 AC 672 ms
23,040 KB
testcase_24 AC 495 ms
17,792 KB
testcase_25 AC 915 ms
20,864 KB
testcase_26 AC 1,500 ms
32,060 KB
testcase_27 AC 914 ms
22,272 KB
testcase_28 AC 1,037 ms
22,656 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 377 ms
20,044 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 299 ms
17,924 KB
testcase_37 AC 1,416 ms
34,220 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 1,844 ms
48,176 KB
testcase_43 TLE -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int N,M;
long T[2<<17];
array<long,10>X,C[2<<17];
set<array<long,10>>S[100];
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 k=0;k<100;k++)
        {
            for(int j=0;j<10;j++)ar[j]=k*T[i]*C[i][j];
            if(S[k].count(ar))
            {
                cout<<"Yes\n";
                return 0;
            }
        }
        for(int j=0;j<10;j++)ar[j]=10000*X[j]-100*T[i]*C[i][j];
        S[100-T[i]].insert(ar);
    }
    cout<<"No\n";
}
0