結果
問題 | No.241 出席番号(1) |
ユーザー | 184 |
提出日時 | 2015-07-11 05:39:31 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 826 bytes |
コンパイル時間 | 249 ms |
コンパイル使用メモリ | 40,192 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-07-08 02:46:40 |
合計ジャッジ時間 | 4,119 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,756 KB |
testcase_01 | AC | 1 ms
6,812 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 0 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 0 ms
6,940 KB |
testcase_07 | AC | 0 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 0 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:22:20: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 22 | int n;scanf("%d",&n);long long b[101]; | ~~~~~^~~~~~~~~ main.cpp:26:41: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 26 | for(int i=0;i<n;i++){int a;scanf("%d",&a);b[i]=((1LL<<n)-1)&~(1LL<<a);;v|=b[i];} | ~~~~~^~~~~~~~~
ソースコード
#include <cstdio> #include <cstring> #include <cmath> #include <algorithm> using namespace std; int dfs(long long *b,int *ans,long long &use,int n,int m){ if(((1LL<<n)-1)==use)return 1; if(n==m ){return 0;} for(long long i=0;i<n;i++){ if((b[m]&(1<<i))&&(use&(1<<i))==0){ ans[m]=i; use^=1LL<<i; if(dfs(b,ans,use,n,m+1))return 1; use^=1LL<<i; } } return 0; } int main(){ int n;scanf("%d",&n);long long b[101]; int v=0; int ans[101]; long long use=0; for(int i=0;i<n;i++){int a;scanf("%d",&a);b[i]=((1LL<<n)-1)&~(1LL<<a);;v|=b[i];} dfs(b,ans,use,n,0); if(use==((1LL<<n)-1))for(int i=0;i<n;i++)printf("%d\n",ans[i]); else printf("-1\n"); /*for(int i=0;i<n;i++){ v^=b[i]; for(int j=0;j<n;j++){ if(v&(1<<j)){ printf("%d\n",j); v^=(1<<j); break; } } }*/ return 0; }