QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#569161#9310. Permutation Counting 4windStriderRE 1ms3688kbC++204.3kb2024-09-16 21:00:242024-09-16 21:00:24

Judging History

你现在查看的是最新测评结果

  • [2024-09-18 14:56:40]
  • hack成功,自动添加数据
  • (/hack/835)
  • [2024-09-18 14:41:06]
  • hack成功,自动添加数据
  • (/hack/831)
  • [2024-09-17 12:14:52]
  • hack成功,自动添加数据
  • (/hack/825)
  • [2024-09-16 21:00:24]
  • 评测
  • 测评结果:RE
  • 用时:1ms
  • 内存:3688kb
  • [2024-09-16 21:00:24]
  • 提交

answer

#include <bits/stdc++.h>
#define IOS1 std::ios::sync_with_stdio(false)
#define IOS2 std::cin.tie(nullptr)
#define mode1 1
#define mode2 1

using i64 = long long;
using ui64 = unsigned long long;

constexpr i64 INF = 0x3f3f3f3f3f3f3f3f;
constexpr int inf = 1e9;
constexpr int mod = 1e9 + 7;

template<class T1, class T2> std::istream& operator>>(std::istream& cin, std::pair<T1, T2>& a) { return cin >> a.first >> a.second; };
template<class T1, class T2> std::ostream& operator<<(std::ostream& cout, std::pair<T1, T2>& a) { return cout << a.first << ' ' << a.second; };
template<class T> std::ostream& operator<<(std::ostream& cout, std::vector<T>& a)
{
    for (int i = 0; i < a.size(); ++i)
        cout << a[i] << " \n"[i == a.size() - 1];
    return cout;
}

inline int read()
{
    int x = 0, f = 1;
    char ch = getchar();
    while (ch < '0' || ch>'9')
    {
        if (ch == '-')
            f = -1;
        ch = getchar();
    }
    while (ch >= '0' && ch <= '9')
        x = x * 10 + ch - '0', ch = getchar();
    return x * f;
}

inline void write(int x)
{
    if (x < 0)
        putchar('-'), x = -x;
    if (x > 9)
        write(x / 10);
    putchar(x % 10 + '0');
    return;
}

using Info = std::pair<int, int>;
using T = std::pair<int, int>;

// template<class Info>
class SegmentTree
{
public:
	int n;
	std::vector<Info> info;
    std::vector<int> lazy;
	SegmentTree() : n(0) {}
	// template<class T>
	SegmentTree(std::vector<T> init_)
	{
		init(init_);
	}
	SegmentTree(int n_, Info v_ = Info())
	{
		init(n_, v_);
	}
	void init(int n_, Info v_ = Info())
	{
		std::vector<Info> x(n_, v_);
		init(x);
	}
	// template<class T>
	void init(std::vector<T>& init_)
	{
		n = init_.size();
		info.assign((i64)4 << (i64)std::log2(n), Info());
		lazy.assign((i64)4 << (i64)std::log2(n), 0);
		build(1, 0, n, init_);
	}
	void build(int p, int l, int r, std::vector<Info>& init_)
	{
		if (r - l == 1)
		{
			info[p] = { 0, l };
			return;
		}
		int mid = (l + r) / 2;
		build(2 * p, l, mid, init_);
		build(2 * p + 1, mid, r, init_);
		pull(p);
	}
	//  Value from sons
	void pull(int p)
	{
		info[p] = std::min(info[2 * p], info[2 * p + 1]);
	}
	void push(int p, int l, int r)
	{
		if (lazy[p] != 0)
		{
			info[p] = { info[p].first + lazy[p], info[p].second }; // Change this if operation is not addition
			if (r - l > 1)
			{
				lazy[2 * p] = lazy[2 * p] + lazy[p];
				lazy[2 * p + 1] = lazy[2 * p + 1] + lazy[p];
			}
			lazy[p] = 0;
		}
	}
	void modify(int p, int l, int r, int x, int y, const int& v)
	{
		push(p, l, r);
		if (l >= y || r <= x)
		{
			return;
		}
		if (l >= x && r <= y)
		{
			lazy[p] = lazy[p] + v;
			push(p, l, r);
			return;
		}
		int mid = (l + r) / 2;
		modify(2 * p, l, mid, x, y, v);
		modify(2 * p + 1, mid, r, x, y, v);
		pull(p);
	}
	void modify(int x, int y, const int& v)
	{
		modify(1, 0, n, x, y, v);
	}
	Info rangeQuery(int p, int l, int r, int x, int y)
	{
		push(p, l, r);
		if (l >= y || r <= x)
		{
			return Info();
		}
		if (l >= x && r <= y)
		{
			return info[p];
		}
		int mid = (l + r) / 2;
		return std::min(rangeQuery(p * 2, l, mid, x, y), rangeQuery(p * 2 + 1, mid, r, x, y));
	}
	Info rangeQuery(int x, int y)
	{
		return rangeQuery(1, 0, n, x, y);
	}
};

class Solution
{
public:
    void solve()
    {
        int n;
        std::cin >> n;
        SegmentTree seg(n);
        std::set<std::pair<int, int>> st;
        for (int i = 0; i < n; ++i)
        {
            int l, r;
            std::cin >> l >> r;
            --l, --r;
            st.insert({ l, r });
            seg.modify(l, r + 1, 1);
        }
        int cnt = 0;
        while (1)
        {
            auto [v, id] = seg.rangeQuery(0, n);
            if (v != 1) break;
            ++cnt;
            seg.modify(id, id + 1, inf);
            auto it = st.lower_bound({ v + 1, 0 });
            --it;
            seg.modify(it->first, it->second + 1, -1);
            st.erase(it);
        }
        std::cout << (cnt == n ? 1 : 0) << "\n";
    }
};

int main()
{
    IOS1;
    IOS2;

#if mode1
    int t;
    std::cin >> t;
    while (t--)
    {
        Solution().solve();
    }
#elif mode2
    Solution().solve();
#endif

    return 0;
}

详细

Test #1:

score: 100
Accepted
time: 1ms
memory: 3688kb

input:

4
5
1 2
1 5
1 2
1 2
2 2
5
1 1
2 4
2 3
5 5
3 4
5
3 5
1 2
3 4
3 5
3 3
5
1 5
1 4
4 5
5 5
1 2

output:

0
1
0
0

result:

ok 4 tokens

Test #2:

score: -100
Runtime Error

input:

66725
14
7 7
4 6
7 8
8 13
2 13
6 13
6 10
14 14
1 10
9 11
7 9
3 8
4 12
5 12
12
2 6
3 6
7 11
2 5
1 1
6 12
8 12
2 3
7 9
7 8
1 10
1 4
10
4 8
4 4
6 10
9 10
2 3
2 7
1 3
3 4
2 2
3 10
20
3 12
10 14
19 20
19 20
1 9
7 9
13 16
17 17
16 18
2 11
5 19
6 17
11 17
3 6
3 11
7 20
8 17
3 18
10 15
9 20
16
5 10
2 10
2 1...

output:


result: