結果

問題 No.455 冬の大三角
ユーザー pekempeypekempey
提出日時 2016-12-06 00:04:24
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 936 bytes
コンパイル時間 1,372 ms
コンパイル使用メモリ 172,808 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-29 20:58:30
合計ジャッジ時間 3,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 54
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int h, w;
    cin >> h >> w;
    vector<string> g(h);
    for (int i = 0; i < h; i++) {
        cin >> g[i];
    }
    vector<int> y, x;
    for (int i = 0; i < h; i++) {
        for (int j = 0; j < w; j++) {
            if (g[i][j] == '*') {
                y.push_back(i);
                x.push_back(j);
            }
        }
    }
    for (int i = 0; i < h; i++) {
        for (int j = 0; j < w; j++) {
            if (g[i][j] == '-') {
                int dy = y[1] - y[0];
                int dx = x[1] - x[0];
                int ey = i - y[0];
                int ex = j - x[0];
                if (dy * ex - dx * ey != 0) {
                    g[i][j] = '*';
                    for (int ii = 0; ii < h; ii++) {
                        cout << g[ii] << endl;
                    }
                    return 0;
                }
            }
        }
    }
}
0