結果

問題 No.2644 Iro Iro-Iro
ユーザー RubikunRubikun
提出日時 2024-02-19 21:54:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 787 ms / 2,000 ms
コード長 1,046 bytes
コンパイル時間 4,495 ms
コンパイル使用メモリ 272,040 KB
実行使用メモリ 197,148 KB
最終ジャッジ日時 2024-09-29 01:53:45
合計ジャッジ時間 31,865 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 726 ms
196,936 KB
testcase_01 AC 734 ms
197,016 KB
testcase_02 AC 727 ms
196,956 KB
testcase_03 AC 716 ms
196,920 KB
testcase_04 AC 738 ms
196,996 KB
testcase_05 AC 740 ms
197,100 KB
testcase_06 AC 732 ms
196,956 KB
testcase_07 AC 732 ms
197,008 KB
testcase_08 AC 719 ms
196,960 KB
testcase_09 AC 726 ms
196,984 KB
testcase_10 AC 737 ms
196,988 KB
testcase_11 AC 723 ms
196,976 KB
testcase_12 AC 732 ms
196,860 KB
testcase_13 AC 787 ms
196,924 KB
testcase_14 AC 779 ms
196,888 KB
testcase_15 AC 775 ms
196,992 KB
testcase_16 AC 770 ms
197,068 KB
testcase_17 AC 780 ms
196,956 KB
testcase_18 AC 773 ms
197,032 KB
testcase_19 AC 775 ms
196,884 KB
testcase_20 AC 770 ms
196,992 KB
testcase_21 AC 776 ms
197,148 KB
testcase_22 AC 785 ms
196,956 KB
testcase_23 AC 783 ms
197,012 KB
testcase_24 AC 787 ms
197,020 KB
testcase_25 AC 777 ms
196,992 KB
testcase_26 AC 782 ms
197,092 KB
testcase_27 AC 769 ms
196,984 KB
testcase_28 AC 731 ms
197,012 KB
testcase_29 AC 783 ms
197,016 KB
testcase_30 AC 767 ms
197,072 KB
testcase_31 AC 784 ms
196,960 KB
testcase_32 AC 775 ms
196,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=300005,INF=1<<30;


int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    const int K=202;
    
    ll N,M;cin>>N>>M;
    vector<ll> A(K*K*K/2),B=A;
    
    for(int i=0;i<N;i++){
        ll a,b,c;cin>>a>>b>>c;
        A[a*K*K+b*K+c]=1;
        B[si(A)-1-(a*K*K+b*K+c)]=1;
    }
    auto C=atcoder::convolution(A,B);
    
    ll mi=INF;
    
    for(int i=0;i<M;i++){
        ll a,b,c;cin>>a>>b>>c;
        chmin(mi,C[si(A)-1+(a*K*K+b*K+c)]);
        //cout<<C[si(A)-1+(a*K*K+b*K+c)]<<endl;
    }
    
    cout<<N+N-mi<<endl;
}

0