結果

問題 No.1584 Stones around Circle Pond
ユーザー SSRSSSRS
提出日時 2021-07-02 21:58:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,946 bytes
コンパイル時間 1,595 ms
コンパイル使用メモリ 173,468 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-11 21:52:53
合計ジャッジ時間 10,468 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 RE -
testcase_02 AC 2 ms
4,380 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 1 ms
4,380 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 RE -
testcase_57 RE -
testcase_58 RE -
testcase_59 RE -
testcase_60 AC 10 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 1000000007;
long long modpow(long long a, long long b){
	long long ans = 1;
	while (b > 0){
		if (b % 2 == 1){
			ans *= a;
			ans %= MOD;
		}
		a *= a;
		a %= MOD;
		b /= 2;
	}
	return ans;
}
long long modinv(long long a){
	return modpow(a, MOD - 2);
}
int main(){
  int N, L;
  cin >> N >> L;
  vector<int> d(N);
  for (int i = 0; i < N; i++){
    cin >> d[i];
  }
  vector<int> B(N * 2);
  for (int i = 0; i < N * 2; i++){
    cin >> B[i];
  }
  vector<int> p(N * 2);
  for (int i = 0; i < N; i++){
    p[i] = d[i];
    p[N + i] = L + d[i];
  }
  vector<vector<long long>> s(N * 2, vector<long long>(N * 2, 0));
  for (int i = 0; i < N * 2; i++){
    for (int j = 0; j < N * 2; j++){
      s[i][j] = min(abs(p[j] - p[i]), L * 2 - abs(p[j] - p[i]));
    }
  }
  vector<vector<long long>> A(N * 2, vector<long long>(N * 2 + 1, 0));
  for (int i = 0; i < N * 2; i++){
    for (int j = 0; j < N * 2; j++){
      A[i][j] = s[i][j];
    }
    A[i][N * 2] = B[i];
  }
  for (int i = 0; i < N * 2; i++){
    int pv = i;
    for (int j = i; j < N * 2; j++){
      if (A[j][i] > 0){
        pv = j;
      }
    }
    swap(A[i], A[pv]);
    long long b = modinv(A[i][i]);
    for (int j = N * 2; j >= i; j--){
      A[i][j] *= b;
      A[i][j] %= MOD;
    }
    for (int j = 0; j < N * 2; j++){
      if (i != j){
        for (int k = 0; k <= N * 2; k++){
          if (k != i){
            A[j][k] += MOD - A[j][i] * A[i][k] % MOD;
            A[j][k] %= MOD;
          }
        }
        A[j][i] = 0;
      }
    }
  }
  vector<unsigned long long> C(N * 2, 0);
  for (int i = 0; i < N * 2; i++){
    for (int j = 0; j < N * 2; j++){
      C[j] += A[i][N * 2] * s[i][j];
    }
  }
  bool ok = true;
  for (int i = 0; i < N * 2; i++){
    if (B[i] != C[i]){
      ok = false;
    }
  }
  if (ok){
    cout << "Yes" << endl;
  } else {
    assert(false);
    cout << "No" << endl;
  }
}
0