QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#574669 | #9313. Make Max | huanmeng | WA | 0ms | 3600kb | C++14 | 1.0kb | 2024-09-18 23:41:50 | 2024-09-18 23:41:51 |
Judging History
answer
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
int t;
cin >> t; // 测试案例数
while (t--) {
int n;
cin >> n;
vector<int> a(n);
for (int i = 0; i < n; i++) {
cin >> a[i];
}
if (n == 1) {
// 只有一个元素无法进行任何操作
cout << 0 << endl;
continue;
}
int operations = 0;
// 找到不全相同的区域并执行操作
for (int i = 1; i < n - 1; i++) {
// 只要相邻元素不同,我们就可以操作
if (a[i] != a[i - 1]) {
operations++; // 第一次操作:变为最小值
i++; // 跳过一个元素,尽量细化操作
operations++; // 第二次操作:变为最大值
}
}
// 统计后的操作次数
cout << operations << endl;
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3600kb
input:
4 2 1 2 2 2 2 7 1 1 1 2 2 2 2 3 1 2 3
output:
0 0 2 2
result:
wrong answer 1st numbers differ - expected: '1', found: '0'