QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#318814#7744. Elevatoramirali_asgariWA 37ms5284kbC++201.8kb2024-01-31 21:07:362024-01-31 21:07:36

Judging History

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

  • [2024-01-31 21:07:36]
  • 评测
  • 测评结果:WA
  • 用时:37ms
  • 内存:5284kb
  • [2024-01-31 21:07:36]
  • 提交

answer

// In the name of Allah

#include <bits/stdc++.h>
using namespace std;

typedef 	long long int			ll;
typedef 	long double				ld;
typedef 	pair<int, int>			pii;
typedef 	pair<ll, ll>			pll;
typedef 	complex<ld>				cld;

#define 	all(x)					(x).begin(),(x).end()
#define 	len(x)					((ll) (x).size())
#define 	F						first
#define 	S						second
#define		X						real()
#define		Y						imag()
#define 	pb						push_back
#define 	sep						' '
#define 	endl					'\n'
#define 	Mp						make_pair
#define 	kill(x)					cout << x << '\n', exit(0)
#define 	set_dec(x)				cout << fixed << setprecision(x);
#define 	file_io(x,y)			freopen(x, "r", stdin); freopen(y, "w", stdout);

int n; ll k;
vector<pll> A1, A2;

int main() {
	ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
	
	int T;
	cin >> T;
	while (T--) {
		A1.clear(); A2.clear();
		
		cin >> n >> k;
		ll r = 0; k /= 2;
		for (int i = 0; i < n; i++) {
			ll c, w, f;
			cin >> c >> w >> f;
			if (w == 1) A1.pb(Mp(f, c));
			else A2.pb(Mp(f, c));
			if (w == 1) r += c;
		}
		
		if (r % 2 == 1) {
			A1[0].S--;
			A2.pb(Mp(A1[0].F, 1));
		}
		
		ll x = 0; sort(all(A1));
		for (int i = 0; i < len(A1); i++) {
			A1[i].S += x;
			A2.pb(Mp(A1[i].F, A1[i].S / 2));
			x = (A1[i].S % 2);
		}
		
		sort(all(A2));
		ll ans = 0; x = 0;
		for (int i = len(A2) - 1; i >= 0; i--) {
			while (x > 0 && A2[i].S > 0) {
				if (x == 0) {
					ans += A2[i].F; x = k;
				}
				ll w = min(A2[i].S, x);
				x -= w; A2[i].S -= w;
			}
			ll t = A2[i].S / k;
			ans += A2[i].F * t; A2[i].S -= k * t;
			while (A2[i].S > 0) {
				if (x == 0) {
					ans += A2[i].F; x = k;
				}
				ll w = min(A2[i].S, x);
				x -= w; A2[i].S -= w;
			}
		}
		cout << ans << endl;
	}
	
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

2
4 6
1 1 8
7 2 5
1 1 7
3 2 6
8 1200000
100000 1 100000
100000 1 12345
100000 2 100000
100000 2 12345
100000 1 100000
100000 1 12345
100000 2 100000
100000 2 12345

output:

24
100000

result:

ok 2 lines

Test #2:

score: -100
Wrong Answer
time: 37ms
memory: 5284kb

input:

5501
8 104
5 2 3
6 2 4
5 2 3
6 2 9
8 2 4
2 1 3
7 2 4
8 2 8
1 290
3 1 1
12 12
6 1 2
1 2 2
1 1 2
1 2 4
6 1 1
1 2 5
6 1 4
4 1 4
6 2 4
6 2 5
4 2 5
4 1 4
5 334
1 1 4
1 2 3
4 2 1
5 1 1
2 1 2
13 218
5 2 3
5 1 4
1 2 1
1 2 5
3 2 2
1 1 3
4 2 2
1 2 5
2 2 1
2 1 5
3 2 1
5 2 1
1 1 4
10 260
7 2 1
5 1 1
5 2 4
6 1 6...

output:

9
1
23
4
5
7
1
3
9
6
1
10
4
9
17
6
4
1
8
5
5
7
1
3
23
6
3
3
2
2
2
3
8
1
5
6
9
11
147
7
10
2
7
7
8
6
5
5
1
7
3
5
10
7
7
10
8
1
4
2
3
9
1
5
2
9
1
6
7
7
6
10
18
8
10
4
10
9
2
8
3
5
9
3
6
5
3
2
6
1
3
2
2
1
6
9
6
3
4
8
9
9
2
6
1
2
6
7
5
2
5
21
8
1
2
3
4
9
3
4
6
5
9
6
1
7
3
7
3
2
2
8
7
3
5
9
7
10
7
3
2
4
...

result:

wrong answer 257th lines differ - expected: '3', found: '4'