結果

問題 No.455 冬の大三角
ユーザー 0w10w1
提出日時 2016-12-07 11:34:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,729 bytes
コンパイル時間 1,847 ms
コンパイル使用メモリ 174,520 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-06 01:27:25
合計ジャッジ時間 7,729 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef pair< int, int > pii;
typedef vector< int > vi;
typedef vector< vi > vvi;
typedef vector< ll > vl;
typedef vector< vl > vvl;
typedef vector< pii > vp;
typedef vector< vp > vvp;
typedef vector< string > vs;
typedef vector< double > vd;
typedef vector< vd > vvd;

template< class T1, class T2 >
int upmin( T1 &x, T2 v ){
  if( x > v ){
    x = v;
    return 1;
  }
  return 0;
}

template< class T1, class T2 >
int upmax( T1 &x, T2 v ){
  if( x < v ){
    x = v;
    return 1;
  }
  return 0;
}

const int INF = 0x3f3f3f3f;

int H, W;
vs G;

void init(){
  cin >> H >> W;
  G = vs( H );
  for( int i = 0; i < H; ++i )
    cin  >> G[ i ];
}

vp pnt;

void preprocess(){
  for( int i = 0; i < H; ++i )
    for( int j = 0; j < W; ++j )
      if( G[ i ][ j ] == '*' )
        pnt.emplace_back( i, j );
}

int ok( pii a, pii b, pii c ){
  int dx1 = b.first - a.first;
  int dy1 = b.second - a.second;
  int dx2 = c.first - b.first;
  int dy2 = c.second - b.second;
  int g1 = __gcd( dx1, dy1 );
  int g2 = __gcd( dx2, dy2 );
  dx1 /= g1, dy1 /= g1;
  if( dx1 < 0 ) dx1 *= -1, dy1 *= -1;
  dx2 /= g2, dy2 /= g2;
  if( dx2 < 0 ) dx2 *= -1, dy2 *= -1;
  return not ( dx1 == dx2 and dy1 == dy2 );
}

void solve(){
  for( int i = 0; i < H; ++i )
    for( int j = 0; j < W; ++j )
      if( G[ i ][ j ] != '*' )
        if( ok( pnt[ 0 ], pnt[ 1 ], make_pair( i, j ) ) ){
          G[ i ][ j ] = '*';
          for( int x = 0; x < H; ++x )
            for( int y = 0; y < W; ++y )
              cout << G[ x ][ y ] << " \n"[ y + 1 == W ];
          exit( 0 );
        }
}

signed main(){
  ios::sync_with_stdio( 0 );
  init();
  preprocess();
  solve();
  return 0;
}
0