QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#654964 | #9225. Fibonacci Fusion | real_sigma_team# | WA | 1115ms | 215436kb | C++17 | 1.7kb | 2024-10-18 23:22:28 | 2024-10-18 23:22:29 |
Judging History
answer
#include<bits/stdc++.h>
uint64_t mod = 1836311903;
uint64_t mod2 = 1836311903;
const int K = 2200;
uint64_t add(uint64_t a, uint64_t b) {
return a + b >= mod ? a + b - mod : a + b;
}
uint64_t sub(uint64_t a, uint64_t b) {
return a >= b ? a - b : a + mod - b;
}
uint64_t mul(uint64_t a, uint64_t b) {
return 1ll * a * b % mod;
}
std::vector<uint64_t> st, hsh;
int main() {
std::cin.tie(nullptr)->sync_with_stdio(false);
{
uint64_t a = 0, b = 1;
st = {a, b};
for (int i = 0; i < 1e7; ++i) {
uint64_t c = add(a, b);
st.push_back(c);
a = b;
b = c;
}
std::sort(st.begin(), st.end());
st.resize(std::unique(st.begin(), st.end()) - st.begin());
}
{
mod = (1ll << 61) - 1;
uint64_t a = 0, b = 1;
hsh = {a, b};
for (int i = 0; i < 1e7; ++i) {
uint64_t c = add(a, b);
hsh.push_back(c);
a = b;
b = c;
}
std::sort(hsh.begin(), hsh.end());
}
int n;
std::cin >> n;
std::map<int64_t, std::vector<int64_t>> mp;
int ans = 0;
for (int i = 0; i < n; ++i) {
std::string s;
std::cin >> s;
int64_t h1 = 0, h2 = 0;
for (auto x : s) {
h1 = add(mul(h1, 10), x - '0');
h2 = (h2 * 10 + (x - '0')) % mod2;
}
for (auto h : st) {
int64_t need = h - h2;
if (need < 0) need += mod2;
for (auto h3 : mp[need]) {
ans += std::binary_search(hsh.begin(), hsh.end(), add(h1, h3));
}
}
mp[h2].push_back(h1);
}
std::cout << ans;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1046ms
memory: 215436kb
input:
6 50 8 8 5 72 354224848179261915070
output:
4
result:
ok 1 number(s): "4"
Test #2:
score: -100
Wrong Answer
time: 1115ms
memory: 214432kb
input:
28 200878223506436882933619847964496455022155117513398820563747455993172799881403389571477889821109288771413214004090719097929400406252135763028179112130390003528046316900603668569910008417315162907579003880220844686222148696041857432602133894827753998572080650383305777912447151917272483538029469449...
output:
0
result:
wrong answer 1st numbers differ - expected: '27', found: '0'