結果
問題 | No.522 Make Test Cases(テストケースを作る) |
ユーザー |
|
提出日時 | 2017-03-26 15:44:32 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 1,890 ms / 2,000 ms |
コード長 | 1,406 bytes |
コンパイル時間 | 1,124 ms |
コンパイル使用メモリ | 100,872 KB |
実行使用メモリ | 63,576 KB |
最終ジャッジ日時 | 2024-09-22 01:02:09 |
合計ジャッジ時間 | 5,674 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 |
ソースコード
#include <iostream> #include <cstdio> #include <cmath> #include <vector> #include <queue> #include <map> #include <set> #include <string> #include <algorithm> #include <functional> using namespace std; #define FOR(i,a,b) for (int i=(a);i<(b);i++) #define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--) #define REP(i,n) for (int i=0;i<(n);i++) #define RREP(i,n) for (int i=(n)-1;i>=0;i--) #define INF 1<<29 #define ALEN(ARR) (sizeof(ARR) / sizeof((ARR)[0])) #define MP make_pair #define mp make_pair #define pb push_back #define PB push_back #define _DEBUG(x) cout<<#x<<": "<<x<<endl #define _DDEBUG(x,y) cout<<#x<<": "<<x<<", "<<#y<<": "<<y<<endl #define ll long long #define ull unsigned long long #define MOD 1000000007 int main(){ cin.tie(0); ios::sync_with_stdio(false); cout.precision(16); int n; cin >> n; set<tuple<int, int, int> > before_sort_ans; FOR(i, 1, n) { FOR(j, i, n) { if(n-i-j <= 0) { break; } int array[] = {i, j, n-i-j}; sort(array, array + 3); before_sort_ans.insert(make_tuple(array[0], array[1], array[2])); } } vector<tuple<int, int, int> > ans; copy(before_sort_ans.begin(), before_sort_ans.end(), back_inserter(ans)); sort(ans.begin(), ans.end()); #if DEBUG cout << "** RESULT **" << endl; // debug #endif for(tuple<int, int, int> elem : ans) { cout << get<0>(elem) << " " << get<1>(elem) << " " << get<2>(elem) << endl; } return 0; }