# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
824988 | phoenix | Crossing (JOI21_crossing) | C++17 | 273 ms | 40400 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
namespace hashing {
struct H {
int len;
ll h1;
unsigned long long h2;
H() : len(0), h1(0), h2(0) {}
H(int c) : len(1), h1(c), h2(c) {}
};
map<char, int> tran = {
{'J', 0},
{'O', 1},
{'I', 2}
};
const int MOD = 1e9 + 7, MAX_LEN = 2e5 + 10;
ll p1[MAX_LEN];
unsigned long long p2[MAX_LEN];
mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count());
H spam_str[MAX_LEN][3];
H operator + (const H a, const H b) {
H res;
res.len = a.len + b.len;
res.h1 = (a.h1 * p1[b.len] + b.h1) % MOD;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |