結果
問題 | No.382 シャイな人たち (2) |
ユーザー | kmjp |
提出日時 | 2016-08-06 00:55:40 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,755 bytes |
コンパイル時間 | 2,191 ms |
コンパイル使用メモリ | 166,624 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-07 00:41:04 |
合計ジャッジ時間 | 137,410 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘void solve()’: main.cpp:66:12: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘std::vector<int>::size_type’ {aka ‘long unsigned int’} [-Wformat=] 66 | _P("%d\n",R.size()+1); | ^~~~~~ ~~~~~~~~~~ | | | std::vector<int>::size_type {aka long unsigned int} main.cpp:7:30: note: in definition of macro ‘_P’ 7 | #define _P(...) (void)printf(__VA_ARGS__) | ^~~~~~~~~~~ main.cpp:66:14: note: format string is defined here 66 | _P("%d\n",R.size()+1); | ~^ | | | int | %ld
ソースコード
#include <bits/stdc++.h> #include <sys/time.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- ll S; int N,P; vector<int> E[130]; int A[200]; static unsigned long long seed = 88172645463325252ULL; unsigned long long xor_rand() { seed ^= (seed << 13); seed ^= (seed >> 7); return seed ^= (seed << 17); } ll nex(){ return S=(S*12345)%1000003;} void solve() { int i,j,k,l,r,x,y; string s; cin>>S; N=nex()%120+2; P=nex(); FOR(i,N) for(j=i+1;j<N;j++) if(nex()>=P) E[i].push_back(j), E[j].push_back(i); FOR(i,N) A[i]=i; struct timeval tv1,tv2; gettimeofday(&tv1,NULL); vector<int> R; R.push_back(0); y=0; while(1) { gettimeofday(&tv2,NULL); if((tv2.tv_sec-tv1.tv_sec)*1000000+(tv2.tv_usec-tv1.tv_usec)>6000000) break; seed = tv1.tv_usec; FOR(i,1000) { y++; bitset<128> B; vector<int> T; FOR(j,N-1) swap(A[j],A[j+xor_rand() % (N-j)]); FOR(j,N) { int ng=0; B.set(A[j]); FORR(e,E[A[j]]) if(B.test(e)) ng=1; if(ng) break; T.push_back(A[j]+1); } if(R.size()<T.size()) R=T; } } if(R.size()==1) return _P("-1\n"); _P("%d\n",R.size()+1); FOR(i,R.size()) _P("%d%c",R[i],(i==R.size()-1)?'\n':' '); } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); solve(); return 0; }