# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1109176 | stdfloat | Nice sequence (IZhO18_sequence) | C++17 | 7 ms | 1004 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define int long long
#define sz(v) (int)(v).size()
void solve() {
int n, m;
cin >> n >> m;
bool tr = false;
if (n > m) {
tr = true;
swap(n, m);
}
vector<int> v;
if (!(m % n)) {
for (int i = 1; i < m; i++)
v.push_back(-1);
}
else {
int x = m / n + 1, z = (n == 2 ? x : 3);
for (int i = 1; i <= x; i++) {
for (int j = 1; j < n; j++)
v.push_back(x);
if (i < x) v.push_back(-(x * (n - 1) + 1));
}
}
if (tr) {
swap(n, m);
for (auto &i : v)
i *= -1;
}
// for (auto i : v)
// cout << i << ' ';
// cout << endl;
ll sm1 = 0, sm2 = 0;
for (int i = 0; i < sz(v); i++) {
sm1 += v[i] - (n <= i ? v[i - n] : 0);
sm2 += v[i] - (m <= i ? v[i - m] : 0);
if (n - 1 <= i) {
if (sm1 >= 0) {
cout << "sad1\n";
exit(false);
}
// assert(sm1 < 0);
}
if (m - 1 <= i) {
if (sm2 <= 0) {
cout << "sad2 " << i - m + 1 << ' ' << i << '\n';
exit(false);
}
// assert(sm2 > 0);
}
}
cout << sz(v) << '\n';
for (auto i : v)
cout << i << ' ';
if (!v.empty()) cout << '\n';
}
int32_t main() {
ios::sync_with_stdio(false); cin.tie(nullptr);
int T;
cin >> T;
while (T--) solve();
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |