Submission #3392856
Source Code Expand
// {{{ by shik
#include <bits/stdc++.h>
#pragma GCC diagnostic ignored "-Wunused-result"
#pragma GCC diagnostic ignored "-Wunused-function"
#define SZ(x) ((int)(x).size())
#define ALL(x) begin(x), end(x)
#define REP(i, n) for (int i = 0; i < int(n); i++)
#define REP1(i, a, b) for (int i = (a); i <= int(b); i++)
#define MP make_pair
#define PB push_back
using namespace std;
typedef int64_t LL;
typedef pair<int, int> PII;
typedef vector<int> VI;
namespace { namespace shik {
template<class T> void _R(T &x) { cin >> x; }
void _R(int &x) { scanf("%d", &x); }
void _R(int64_t &x) { scanf("%" SCNd64, &x); }
void _R(double &x) { scanf("%lf", &x); }
void _R(char &x) { scanf(" %c", &x); }
void _R(char *x) { scanf("%s", x); }
void R() {}
template<class T, class... U> void R(T &head, U &... tail) { _R(head); R(tail...); }
template<class T> void _W(const T &x) { cout << x; }
void _W(const int &x) { printf("%d", x); }
void _W(const int64_t &x) { printf("%" PRId64, x); }
void _W(const double &x) { printf("%.16f", x); }
void _W(const char &x) { putchar(x); }
void _W(const char *x) { printf("%s", x); }
template<class T> void _W(const vector<T> &x) { for (auto i = x.begin(); i != x.end(); _W(*i++)) if (i != x.cbegin()) putchar(' '); }
void W() {}
template<class T, class... U> void W(const T &head, const U &... tail) { _W(head); putchar(sizeof...(tail) ? ' ' : '\n'); W(tail...); }
#ifdef SHIK
#include "dump.hpp"
#else
#define dump(...)
#endif
template<class T, class F = less<T>> void sort_uniq(vector<T> &v, F f = F()) { sort(begin(v), end(v), f); v.resize(unique(begin(v), end(v)) - begin(v)); }
template<class T> inline T bit(T x, int i) { return (x >> i) & 1; }
template<class T> inline bool chkmax(T &a, const T &b) { return b > a ? a = b, true : false; }
template<class T> inline bool chkmin(T &a, const T &b) { return b < a ? a = b, true : false; }
template<class T> using MaxHeap = priority_queue<T>;
template<class T> using MinHeap = priority_queue<T, vector<T>, greater<T>>;
// }}}
const int N=1e5+10;
LL n,m;
char s[N],t[N];
void main() {
R(n,m,s,t);
REP(i,n) {
if ( m*i%n!=0 ) continue;
LL j=m*i/n;
if ( j>=0 && j<m && s[i]!=t[j] ) {
dump(i,j,s[i],t[j]);
W(-1);
return;
}
}
LL ans=n*m/__gcd(n,m);
W(ans);
}
// {{{ main
}}
int main() { shik::main(); return 0; }
// }}}
Submission Info
| Submission Time |
|
| Task |
A - Two Abbreviations |
| User |
shik |
| Language |
C++14 (GCC 5.4.1) |
| Score |
300 |
| Code Size |
2453 Byte |
| Status |
AC |
| Exec Time |
2 ms |
| Memory |
384 KiB |
Judge Result
| Set Name |
Sample |
All |
| Score / Max Score |
0 / 0 |
300 / 300 |
| Status |
|
|
| Set Name |
Test Cases |
| Sample |
sample-01.txt, sample-02.txt, sample-03.txt |
| All |
sample-01.txt, sample-02.txt, sample-03.txt, sample-01.txt, sample-02.txt, sample-03.txt, subtask01-01.txt, subtask01-02.txt, subtask01-03.txt, subtask01-04.txt, subtask01-05.txt, subtask01-06.txt, subtask01-07.txt, subtask01-08.txt, subtask01-09.txt, subtask01-10.txt, subtask01-11.txt, subtask01-12.txt, subtask01-13.txt, subtask01-14.txt, subtask01-15.txt |
| Case Name |
Status |
Exec Time |
Memory |
| sample-01.txt |
AC |
1 ms |
256 KiB |
| sample-02.txt |
AC |
1 ms |
256 KiB |
| sample-03.txt |
AC |
1 ms |
256 KiB |
| subtask01-01.txt |
AC |
1 ms |
256 KiB |
| subtask01-02.txt |
AC |
1 ms |
256 KiB |
| subtask01-03.txt |
AC |
2 ms |
384 KiB |
| subtask01-04.txt |
AC |
2 ms |
384 KiB |
| subtask01-05.txt |
AC |
2 ms |
384 KiB |
| subtask01-06.txt |
AC |
2 ms |
384 KiB |
| subtask01-07.txt |
AC |
1 ms |
256 KiB |
| subtask01-08.txt |
AC |
2 ms |
384 KiB |
| subtask01-09.txt |
AC |
1 ms |
384 KiB |
| subtask01-10.txt |
AC |
2 ms |
384 KiB |
| subtask01-11.txt |
AC |
2 ms |
384 KiB |
| subtask01-12.txt |
AC |
2 ms |
384 KiB |
| subtask01-13.txt |
AC |
2 ms |
384 KiB |
| subtask01-14.txt |
AC |
2 ms |
384 KiB |
| subtask01-15.txt |
AC |
2 ms |
384 KiB |