結果

問題 No.455 冬の大三角
ユーザー しゅらにるーとにしゅらにるーとに
提出日時 2024-12-11 01:36:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 976 bytes
コンパイル時間 4,041 ms
コンパイル使用メモリ 230,976 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-11 01:36:51
合計ジャッジ時間 6,438 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 WA -
testcase_07 WA -
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 WA -
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 WA -
testcase_17 AC 2 ms
5,248 KB
testcase_18 WA -
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 WA -
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 3 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 2 ms
5,248 KB
testcase_45 AC 2 ms
5,248 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 3 ms
5,248 KB
testcase_48 AC 2 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 WA -
testcase_52 AC 2 ms
5,248 KB
testcase_53 AC 2 ms
5,248 KB
testcase_54 AC 2 ms
5,248 KB
testcase_55 AC 3 ms
5,248 KB
testcase_56 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:35:35: warning: 'c' may be used uninitialized [-Wmaybe-uninitialized]
   35 |                         if(a==i||c==i)continue;
      |                                  ~^~~
main.cpp:24:17: note: 'c' was declared here
   24 |         int a,b,c,d;
      |                 ^
main.cpp:36:49: warning: 'd' may be used uninitialized [-Wmaybe-uninitialized]
   36 |                         if((b-j)*(c-i)==(a-i)*(d-j))continue;
      |                                               ~~^~~
main.cpp:24:19: note: 'd' was declared here
   24 |         int a,b,c,d;
      |                   ^
main.cpp:36:30: warning: 'b' may be used uninitialized [-Wmaybe-uninitialized]
   36 |                         if((b-j)*(c-i)==(a-i)*(d-j))continue;
      |                            ~~^~~
main.cpp:24:15: note: 'b' was declared here
   24 |         int a,b,c,d;
      |               ^
main.cpp:24:13: warning: 'a' may be used uninitialized [-Wmaybe-uninitialized]
   24 |         int a,b,c,d;
      |             ^

ソースコード

diff #

#include<bits/stdc++.h>
#include <atcoder/all>
#ifdef LOCAL
#include <debug_print.hpp>
#define debug(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#define debug(...) (static_cast<void>(0))
#endif
using namespace atcoder;
using mint=modint998244353;
using namespace std;
using ll=long long;
using ul=unsigned long long;
int dx[9] = {-1, 1, 0, 0, -1, -1, 1, 1, 0};
int dy[9] = {0, 0, -1, 1, -1, 1, -1, 1, 0};
using Graph=vector<vector<int>>;
ll op(ll a,ll b){return min(a,b);}
ll e(){return 2e9;}
int main(){
	int H,W;
	cin>>H>>W;
	vector<string>S(H);
	for(int i=0;i<H;i++)cin>>S[i];
	int a,b,c,d;
	bool ok=false;
	for(int i=0;i<H;i++){
		for(int j=0;j<W;j++){
			if(S[i][j]=='*'&&!ok)a=i,b=j;
			else if(S[i][j]=='*')c=i,d=j;
		}
	}
	bool okok=false;
	for(int i=0;i<H;i++){
		for(int j=0;j<W;j++){
			if(a==i||c==i)continue;
			if((b-j)*(c-i)==(a-i)*(d-j))continue;
			S[i][j]='*';
			okok=true;
			break;
		}
		if(okok)break;
	}
	for(auto a:S)cout<<a<<endl;
}
0