結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー AnumishAnumish
提出日時 2021-06-11 21:41:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,169 bytes
コンパイル時間 1,115 ms
コンパイル使用メモリ 105,368 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 17:17:18
合計ジャッジ時間 8,132 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 106 ms
5,376 KB
testcase_04 AC 107 ms
5,376 KB
testcase_05 AC 54 ms
5,376 KB
testcase_06 AC 75 ms
5,376 KB
testcase_07 AC 86 ms
5,376 KB
testcase_08 AC 104 ms
5,376 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 67 ms
5,376 KB
testcase_11 AC 86 ms
5,376 KB
testcase_12 AC 48 ms
5,376 KB
testcase_13 AC 83 ms
5,376 KB
testcase_14 AC 127 ms
5,376 KB
testcase_15 AC 110 ms
5,376 KB
testcase_16 AC 43 ms
5,376 KB
testcase_17 AC 37 ms
5,376 KB
testcase_18 AC 44 ms
5,376 KB
testcase_19 AC 40 ms
5,376 KB
testcase_20 AC 99 ms
5,376 KB
testcase_21 AC 23 ms
5,376 KB
testcase_22 AC 59 ms
5,376 KB
testcase_23 AC 141 ms
5,376 KB
testcase_24 AC 140 ms
5,376 KB
testcase_25 AC 141 ms
5,376 KB
testcase_26 AC 139 ms
5,376 KB
testcase_27 AC 138 ms
5,376 KB
testcase_28 AC 141 ms
5,376 KB
testcase_29 AC 141 ms
5,376 KB
testcase_30 AC 139 ms
5,376 KB
testcase_31 AC 140 ms
5,376 KB
testcase_32 AC 141 ms
5,376 KB
testcase_33 AC 1,208 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 108 ms
5,376 KB
testcase_37 AC 2 ms
5,376 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 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

//#pragma GCC optimize ("O3")
//#pragma GCC target ("sse4")
//#pragma GCC optimize("Ofast")
//#pragma GCC optimize("Ofast,unroll-loops")
//#pragma GCC target("avx,avx2,fma")
#include <algorithm>
#include <array>
#include <cassert>
//#include <chrono>
#include <cmath>
//#include <cstring>
//#include <functional>
//#include <iomanip>
#include <iostream>
#include <map>
//#include <numeric>
//#include <queue>
//#include <random>
#include <set>
#include <vector>
using namespace std;
#define FAST  ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0)
//#include <ext/pb_ds/assoc_container.hpp> 
//#include <ext/pb_ds/tree_policy.hpp> 
//using namespace __gnu_pbds; 
#define int long long 
#define ll int
#define all(a) a.begin(),a.end()    
#define rev(a) a.rbegin(),a.rend()    
//typedef tree<int, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set; //less_equal for multiset
#define ar array
#define pb push_back
#define fi(a,b) for(int i=a;i<(b);i++)
#define fj(a,b) for(int j=a;j<(b);j++)
#define fk(a,b) for(int k=a;k<(b);k++)
const double pi=acosl(-1);



void solve()
{
    int n,m;
    cin>>n>>m;
    vector<int> a(n);
    fi(0,n)
    {
        cin>>a[i];
    }
    vector<int> b(m);
    fi(0,m)
    {
        cin>>b[i];
    }
    int ans=1e18;
    fi(0,n)
    {
        set<int> s;
        fj(0,m)
        {
            if(a[i]==b[j]) s.insert(j);
        }
        for(int moves=0;moves<=2000;moves++)
        {
            if(s.find((moves*n+i)%m)!=s.end())
            {
                ans=min(ans,moves*n+i+1);
            }
        }
    }
    if(ans==1e18) ans=-1;
    cout<<ans<<'\n';

    
    
}

signed main()
{
    FAST;
    int tt=1;
    //cin>>tt;    
    while(tt--)
    {
        solve();
    }    
}










//int dx[] = {+1,-1,+0,+0,-1,-1,+1,+1}; // Eight Directions
//int dy[] = {+0,+0,+1,-1,+1,-1,-1,+1}; // Eight Directions
//int dx[]= {-2,-2,-1,1,-1,1,2,2}; // Knight moves
//int dy[]= {1,-1,-2,-2,2,2,-1,1}; // Knight moves
// For (a^b)%mod, where b is large, replace b by b%(mod-1)..{because we solve this by introducing log ..do same for general cases}
// a+b = (a|b)+(a&b)
// a+b = 2*(a&b)+(a^b)
0