結果

問題 No.1000 Point Add and Array Add
ユーザー vjudge1vjudge1
提出日時 2023-08-26 14:52:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 795 bytes
コンパイル時間 634 ms
コンパイル使用メモリ 64,676 KB
実行使用メモリ 8,760 KB
最終ジャッジ日時 2023-08-26 14:52:23
合計ジャッジ時間 4,831 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<iostream>
#include<cstring>
using namespace std;
char ch[10][10];
int vis[10],n,k,ans=0,num=0;
void dfs(int i)
{
    int j;
    if(num==k)
    {
        ans++;
        return;
    }
    if(i>n)
    {
        return ;
    }
    for(j=1;j<=n;++j)
    {
        if(!vis[j]&&ch[i][j]=='#')
        {
            vis[j]=1;
            num++;
            dfs(i+1);
            vis[j]=0;
            num--;
        }
    }
    dfs(i+1);
}
int main()
{
    int i,j;
    memset(vis,0,sizeof(vis));
    while(cin>>n>>k)
    {
        if(n==-1&&k==-1)
        break;
        ans=0;
        num=0;
        for(i=1;i<=n;++i)
        {
            for(j=1;j<=n;++j)
            {
                cin>>ch[i][j];
            }
        }
        dfs(1);
        cout<<ans<<"\n";
    }
}
0