QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#300145#7904. Rainbow Subarrayhos_lyricAC ✓455ms30560kbC++143.7kb2024-01-07 19:11:012024-01-07 19:11:02

Judging History

你现在查看的是测评时间为 2024-01-07 19:11:02 的历史记录

  • [2024-06-09 00:01:19]
  • 自动重测本题所有获得100分的提交记录
  • 测评结果:AC
  • 用时:537ms
  • 内存:30652kb
  • [2024-06-09 00:00:26]
  • hack成功,自动添加数据
  • (/hack/652)
  • [2024-01-07 19:11:02]
  • 评测
  • 测评结果:100
  • 用时:455ms
  • 内存:30560kb
  • [2024-01-07 19:11:01]
  • 提交

answer

#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <limits>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>

using namespace std;

using Int = long long;

template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; };
template <class T> ostream &operator<<(ostream &os, const vector<T> &as) { const int sz = as.size(); os << "["; for (int i = 0; i < sz; ++i) { if (i >= 256) { os << ", ..."; break; } if (i > 0) { os << ", "; } os << as[i]; } return os << "]"; }
template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; }
template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; }
template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; }
#define COLOR(s) ("\x1b[" s "m")


// by Um_nik
// https://codeforces.com/contest/1824/submission/205144104
template<typename T> struct SmartSet {
	multiset<T> big, small;
	T sumBig, sumSmall;
 
	SmartSet() : big(), small(), sumBig(), sumSmall() {}
 
	int size() const {
		return (int)small.size() + (int)big.size();
	}
	void normalizeSmall(int k) {
		k = max(0, min(k, size()));
		while((int)small.size() > k) {
			auto it = prev(small.end());
			sumSmall -= *it;
			sumBig += *it;
			big.insert(*it);
			small.erase(it);
		}
		while((int)small.size() < k) {
			auto it = big.begin();
			sumBig -= *it;
			sumSmall += *it;
			small.insert(*it);
			big.erase(it);
		}
	}
	void insert(T x) {
		if (big.empty() || x < *big.begin()) {
			small.insert(x);
			sumSmall += x;
		} else {
			big.insert(x);
			sumBig += x;
		}
	}
	void erase(T x) {
		if (big.find(x) != big.end()) {
			big.erase(big.find(x));
			sumBig -= x;
		} else if (small.find(x) != small.end()) {
			small.erase(small.find(x));
			sumSmall -= x;
		} else {
			assert(false);
		}
	}
	T getSumSmall(int k) {
		normalizeSmall(k);
		assert((int)small.size() == k);
		return sumSmall;
	}
	T getSumBig(int k) {
		normalizeSmall(size() - k);
		assert((int)big.size() == k);
		return sumBig;
	}
	void clear() {
		sumSmall = sumBig = 0;
		small.clear();
		big.clear();
	}
};


int N;
Int K;
vector<Int> A;

Int sz;
SmartSet<Int> sms;
void init() {
  sz = 0;
  sms = SmartSet<Int>();
}
void push(Int a) {
  ++sz;
  sms.insert(a);
}
void pop(Int a) {
  --sz;
  sms.erase(a);
}
bool isValid() {
  if (sz == 0) return true;
  const Int half = sz / 2;
  sms.normalizeSmall(half);
  const Int mid = *sms.big.begin();
  Int cost = 0;
  cost += (half * mid - sms.getSumSmall(half));
  cost += (sms.getSumBig(sz - half) - (sz - half) * mid);
  return (cost <= K);
}

int main() {
  for (int numCases; ~scanf("%d", &numCases); ) { for (int caseId = 1; caseId <= numCases; ++caseId) {
    scanf("%d%lld", &N, &K);
    A.resize(N);
    for (int i = 0; i < N; ++i) {
      scanf("%lld", &A[i]);
      A[i] -= i;
    }
// cerr<<"A = "<<A<<endl;
    
    int ans = 1;
    init();
    for (int l = 0, r = 0; l < N; ++l) {
      for (; r < N; ) {
        push(A[r]);
        if (isValid()) {
          ++r;
        } else {
          pop(A[r]);
          break;
        }
      }
      chmax(ans, r - l);
      pop(A[l]);
    }
    printf("%d\n", ans);
  }
#ifndef LOCAL
  break;
#endif
  }
  return 0;
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3792kb

input:

5
7 5
7 2 5 5 4 11 7
6 0
100 3 4 5 99 100
5 6
1 1 1 1 1
5 50
100 200 300 400 500
1 100
3

output:

4
3
5
1
1

result:

ok 5 lines

Test #2:

score: 0
Accepted
time: 196ms
memory: 5932kb

input:

11102
2 167959139
336470888 134074578
5 642802746
273386884 79721198 396628655 3722503 471207868
6 202647942
268792718 46761498 443917727 16843338 125908043 191952768
2 717268783
150414369 193319712
6 519096230
356168102 262263554 174936674 407246545 274667941 279198849
9 527268921
421436316 3613460...

output:

1
4
3
2
6
5
7
2
4
1
4
1
1
3
2
2
7
8
7
7
1
7
6
2
4
3
1
6
7
7
3
4
3
9
3
8
6
6
3
1
6
3
1
2
4
6
4
6
4
1
4
7
1
6
3
5
6
6
1
7
5
3
1
6
4
5
3
2
2
6
2
3
10
1
4
3
2
4
5
1
7
5
5
5
8
5
3
6
3
5
5
8
5
4
5
2
1
5
2
3
3
4
8
1
3
1
2
2
8
3
1
6
8
1
8
4
5
6
6
8
4
8
3
2
8
4
5
6
2
6
2
4
1
5
4
5
3
2
4
1
2
1
4
5
8
3
7
3
3
3...

result:

ok 11102 lines

Test #3:

score: 0
Accepted
time: 455ms
memory: 15204kb

input:

1
500000 17244641009859
54748096 75475634 204928248 276927808 84875072 103158867 27937890 322595515 186026685 45468307 69240390 139887597 188586447 373764525 121365644 310156469 185188306 60350786 211308832 384695957 370562147 208427221 35937909 267590963 126478310 275357775 55361535 335993561 36696...

output:

172998

result:

ok single line: '172998'

Test #4:

score: 0
Accepted
time: 455ms
memory: 15284kb

input:

1
500000 43483524125987
923264237 374288891 535590429 751244358 124321145 232930851 266089174 543529670 773363571 319728747 580543238 582720391 468188689 490702144 598813561 138628383 284660056 733781508 155605777 931759705 245485733 723534730 257812292 794937524 596788519 188451996 981010588 144836...

output:

174260

result:

ok single line: '174260'

Test #5:

score: 0
Accepted
time: 170ms
memory: 30560kb

input:

1
499999 62499749999
496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081...

output:

499998

result:

ok single line: '499998'

Extra Test:

score: 0
Extra Test Passed