結果
問題 | No.1000 Point Add and Array Add |
ユーザー | vjudge1 |
提出日時 | 2023-08-26 14:47:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 573 bytes |
コンパイル時間 | 799 ms |
コンパイル使用メモリ | 65,356 KB |
実行使用メモリ | 13,884 KB |
最終ジャッジ日時 | 2024-06-07 10:10:30 |
合計ジャッジ時間 | 5,959 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | -- | - |
ソースコード
#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"; } }