Submission #847089

#TimeUsernameProblemLanguageResultExecution timeMemory
847089GrandTiger1729Nice sequence (IZhO18_sequence)C++17
15 / 100
6 ms1116 KiB
#include <bits/stdc++.h> using namespace std; int main() { cin.tie(0)->sync_with_stdio(0); int t; cin >> t; while (t--) { int n, m; cin >> n >> m; if (n == m) { cout << n - 1 << '\n'; for (int i = 0; i < n - 1; i++) cout << 1 << " \n"[i == n - 2]; continue; } bool flag = 0; if (n < m) { swap(n, m); flag = 1; } vector<int> ans; if (n % m == 0) { ans = vector<int>(n - 1, 1); if (flag) { for (int &i : ans) i = -i; } cout << ans.size() << '\n'; for (int i = 0; i < ans.size(); i++) cout << ans[i] << " \n"[i + 1 == ans.size()]; continue; } if (m == 2) { ans = vector<int>(n, -1e8); for (int i = 1; i < n; i += 2) ans[i] = 1e8 + 1; if (flag) { for (int &i : ans) i = -i; } cout << ans.size() << '\n'; for (int i = 0; i < ans.size(); i++) cout << ans[i] << " \n"[i + 1 == ans.size()]; continue; } if (flag) { for (int &i : ans) i = -i; } } return 0; }

Compilation message (stderr)

sequence.cpp: In function 'int main()':
sequence.cpp:34:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   34 |             for (int i = 0; i < ans.size(); i++)
      |                             ~~^~~~~~~~~~~~
sequence.cpp:35:47: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   35 |                 cout << ans[i] << " \n"[i + 1 == ans.size()];
      |                                         ~~~~~~^~~~~~~~~~~~~
sequence.cpp:49:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   49 |             for (int i = 0; i < ans.size(); i++)
      |                             ~~^~~~~~~~~~~~
sequence.cpp:50:47: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   50 |                 cout << ans[i] << " \n"[i + 1 == ans.size()];
      |                                         ~~~~~~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...