結果
問題 | No.382 シャイな人たち (2) |
ユーザー | kmjp |
提出日時 | 2018-02-27 22:24:27 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 7,006 ms / 8,000 ms |
コード長 | 1,706 bytes |
コンパイル時間 | 1,925 ms |
コンパイル使用メモリ | 166,408 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-07 17:31:18 |
合計ジャッジ時間 | 157,026 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7,002 ms
5,248 KB |
testcase_01 | AC | 7,003 ms
5,248 KB |
testcase_02 | AC | 7,003 ms
5,376 KB |
testcase_03 | AC | 7,002 ms
5,376 KB |
testcase_04 | AC | 7,002 ms
5,376 KB |
testcase_05 | AC | 7,003 ms
5,376 KB |
testcase_06 | AC | 7,002 ms
5,376 KB |
testcase_07 | AC | 7,003 ms
5,376 KB |
testcase_08 | AC | 7,004 ms
5,376 KB |
testcase_09 | AC | 7,004 ms
5,376 KB |
testcase_10 | AC | 7,002 ms
5,376 KB |
testcase_11 | AC | 7,003 ms
5,376 KB |
testcase_12 | AC | 7,001 ms
5,376 KB |
testcase_13 | AC | 7,006 ms
5,376 KB |
testcase_14 | AC | 7,004 ms
5,376 KB |
testcase_15 | AC | 7,001 ms
5,376 KB |
testcase_16 | AC | 7,005 ms
5,376 KB |
testcase_17 | AC | 7,002 ms
5,376 KB |
testcase_18 | AC | 7,001 ms
5,376 KB |
testcase_19 | AC | 7,003 ms
5,376 KB |
testcase_20 | AC | 7,002 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘void solve()’: main.cpp:63:12: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘std::vector<int>::size_type’ {aka ‘long unsigned int’} [-Wformat=] 63 | _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:63:14: note: format string is defined here 63 | _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; bitset<128> E[130]; int A[200]; static unsigned long long seed = 88172645463325252ULL; int xor_rand() { seed ^= (seed << 13); seed ^= (seed >> 7); seed ^= (seed << 17); return seed & 0xFFFFFF; } 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].set(j), E[j].set(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)>7000000) break; seed = tv2.tv_usec; FOR(i,5000) { y++; bitset<128> B; vector<int> T; FOR(j,N-1) swap(A[j],A[j+xor_rand() % (N-j)]); FOR(j,N) if(B.test(A[j])==0) { T.push_back(A[j]+1); B |= E[A[j]]; } if(R.size()<T.size()) R=T; } } if(R.size()==N) return _P("-1\n"); _P("%d\n",R.size()+1); sort(ALL(R)); 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; }