結果

問題 No.635 自然門松列
ユーザー maimai
提出日時 2017-04-09 18:15:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,042 bytes
コンパイル時間 5,271 ms
コンパイル使用メモリ 165,480 KB
実行使用メモリ 7,620 KB
最終ジャッジ日時 2023-10-11 12:59:32
合計ジャッジ時間 11,649 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
4,348 KB
testcase_01 AC 189 ms
4,348 KB
testcase_02 AC 2 ms
4,352 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 418 ms
4,352 KB
testcase_08 WA -
testcase_09 AC 223 ms
4,368 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

#ifdef WINT_MIN
#define __MAI
#endif

using namespace std;
typedef long long int ll;


// 門松列の判定
inline bool kadomatu(double a, double b, double c) {
    return a != b&&b != c&&c != a && ((a<b && c<b) || (a>b && c>b));
}


bool solve(double x1, double x2, double x3, double y1, double y2, double y3) {

    // 時間0で🎍
    if (kadomatu(x1, x2, x3)) return true;
    // 十分な時間経過で🎍
    if (kadomatu(y1, y2, y3)) return true;

    for (double t = 0.0; t < 1000; t+=0.0001) {

        // 時刻tで🎍かどうか調べる
        if (kadomatu(x1 + y1*t, x2 + y2*t, x3 + y3*t)) {
            return true;
        }
    }
    return false;
}


int main() {
    int n;
    double x1, x2, x3, y1, y2, y3;

    cin >> n;

    for (int i = 0; i < n; ++i) {
        cin >> x1 >> x2 >> x3 >> y1 >> y2 >> y3;
        
        if (solve(x1, x2, x3, y1, y2, y3)) {
            cout << "YES" << endl;
        }
        else {
            cout << "NO" << endl;
        }
    }



    return 0;
}
0