結果
問題 | No.743 Segments on a Polygon |
ユーザー | Joe Hattori |
提出日時 | 2018-10-07 10:09:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 680 bytes |
コンパイル時間 | 480 ms |
コンパイル使用メモリ | 59,988 KB |
実行使用メモリ | 14,080 KB |
最終ジャッジ日時 | 2024-10-12 14:09:02 |
合計ジャッジ時間 | 7,515 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
#include <iostream> #include <vector> using namespace std; int main() { int n,m; cin >> n >> m; vector<int> a, b; int ans = 0; for (int i = 0; i < n; i++) { int _a, _b; cin >> _a >> _b; if (_b < _a) { int temp = _a; _a = _b; _b = temp; } a.push_back(_a); b.push_back(_b); for (int k = 0; k < i; k++) { if ((a[k] < _a && _a < b[k]) && (a[k] < _b && _b < b[k])) { continue; } if ((a[k] < _a && _a < b[k]) || (a[k] < _b && _b < b[k])) { ans++; } } } cout << ans << endl; return 0; }