結果

問題 No.1999 Lattice Teleportation
ユーザー MasKoaTSMasKoaTS
提出日時 2024-12-02 18:01:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 1,225 bytes
コンパイル時間 2,632 ms
コンパイル使用メモリ 212,764 KB
実行使用メモリ 5,456 KB
最終ジャッジ日時 2024-12-02 18:01:14
合計ジャッジ時間 6,218 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 4 ms
5,248 KB
testcase_06 AC 4 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 114 ms
5,324 KB
testcase_13 AC 185 ms
5,452 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 184 ms
5,456 KB
testcase_16 AC 63 ms
5,248 KB
testcase_17 AC 102 ms
5,456 KB
testcase_18 AC 93 ms
5,448 KB
testcase_19 AC 97 ms
5,456 KB
testcase_20 AC 207 ms
5,448 KB
testcase_21 AC 183 ms
5,456 KB
testcase_22 AC 184 ms
5,324 KB
testcase_23 AC 10 ms
5,248 KB
testcase_24 AC 39 ms
5,248 KB
testcase_25 AC 90 ms
5,456 KB
testcase_26 AC 75 ms
5,248 KB
testcase_27 AC 63 ms
5,248 KB
testcase_28 AC 106 ms
5,452 KB
testcase_29 AC 51 ms
5,248 KB
testcase_30 AC 24 ms
5,248 KB
testcase_31 AC 18 ms
5,248 KB
testcase_32 AC 68 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
#include <atcoder/math>
using namespace std;
using namespace atcoder;
using mint = modint1000000007;
using ll = long long;


bool argsort(const pair<ll, ll>& v1, const pair<ll, ll>& v2) {
    auto&[x1, y1] = v1;
    auto&[x2, y2] = v2;
    return (x1 * y2 > x2 * y1);
}


void count(mint& ans, vector<pair<ll, ll> >& vectors, ll a_init){
    mint last = 0;
    for(auto[x, y] : vectors){
		ll a = a_init;
		mint s = 0;
		if(x < 0){
			a = -a_init, x = -x;
		}
        s += x * last;
        if(x != 0){
            s += floor_sum(x, x, y, 0);
        }
		ans += a * s;
		last += y;
	}
}


int main(){
    int n;  cin >> n;
    vector<pair<ll, ll> > vectors = {};
    for(int i = 0; i < n; ++i){
        ll x, y;    cin >> x >> y;
        if(x == 0 && y == 0){
            continue;
        }
        if(y < 0){
            x = -x, y = -y;
        }
        vectors.push_back({x, y});
    }
    sort(vectors.begin(), vectors.end(), argsort);

    mint ans = 1;
    for(auto&[x, y] : vectors){
        ans += gcd(x, y);
    }
    count(ans, vectors, -1);
    reverse(vectors.begin(), vectors.end());
    count(ans, vectors, 1);
    cout << ans.val() << endl;

    return 0;
}
0