# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
821078 | boris_mihov | Marshmallow Molecules (CCO19_day2problem2) | C++17 | 4083 ms | 177980 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <algorithm>
#include <iostream>
#include <numeric>
#include <cassert>
#include <vector>
#include <bitset>
#include <queue>
#include <stack>
#include <set>
#include <map>
typedef long long llong;
const int MAXN = 100000 + 10;
const llong INF = 1e18;
const int INTINF = 1e9;
int n, m;
std::bitset <MAXN> bs[MAXN];
void solve()
{
llong cnt = 0;
for (int i = 1 ; i <= n ; ++i)
{
std::bitset <MAXN> toOR;
for (int j = i - 1 ; j >= 1 ; --j)
{
if (bs[j][i])
{
toOR |= bs[j];
}
}
bs[i] |= (toOR >> i + 1) << i + 1;
cnt += bs[i].count();
if (((bs[i] >> i + 1) << i + 1).count() == n - i)
{
cnt += 1LL * (n - i) * (n - i - 1) / 2;
break;
}
}
std::cout << cnt << '\n';
}
void input()
{
std::cin >> n >> m;
for (int i = 1 ; i <= m ; ++i)
{
int u, v;
std::cin >> u >> v;
bs[u][v] = 1;
}
}
void fastIOI()
{
std::ios_base :: sync_with_stdio(0);
std::cout.tie(nullptr);
std::cin.tie(nullptr);
}
int main()
{
fastIOI();
input();
solve();
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |